From 3b0a4ff89fb76b7cd56bc7d16b485a7e1be85cfd Mon Sep 17 00:00:00 2001 From: zl <3216908512@qq.com> Date: Wed, 27 Nov 2024 13:15:32 +0800 Subject: [PATCH] =?UTF-8?q?develop=E6=94=BE4=E4=B8=AA=E7=BB=84=E5=91=98?= =?UTF-8?q?=E5=90=88=E5=B9=B6=E5=90=8E=E7=9A=84=E6=BA=90=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 8 - .idea/compiler.xml | 13 - .idea/misc.xml | 14 - .idea/modules.xml | 8 - .idea/yfexam-exam-main.iml | 9 - .vscode/settings.json | 3 - docs/运行包/application-local.yml | 4 +- docs/运行包/logs/yf-exam-lite/spring.log | 50432 ---------------- exam-api/.idea/.gitignore | 8 - exam-api/.idea/compiler.xml | 13 - exam-api/.idea/misc.xml | 12 - .../java/com/yf/exam/ability/Constant.java | 13 +- .../yf/exam/ability/job/enums/JobGroup.java | 14 +- .../yf/exam/ability/job/enums/JobPrefix.java | 15 +- .../exam/ability/job/service/JobService.java | 51 +- .../job/service/impl/JobServiceImpl.java | 129 +- .../ability/shiro/CNFilterFactoryBean.java | 38 +- .../com/yf/exam/ability/shiro/ShiroRealm.java | 246 +- .../yf/exam/ability/shiro/aop/JwtFilter.java | 113 +- .../yf/exam/ability/shiro/jwt/JwtToken.java | 41 +- .../yf/exam/ability/shiro/jwt/JwtUtils.java | 90 +- .../ability/upload/config/UploadConfig.java | 36 +- .../upload/controller/UploadController.java | 71 +- .../exam/ability/upload/dto/UploadReqDTO.java | 30 +- .../ability/upload/dto/UploadRespDTO.java | 35 +- .../ability/upload/service/UploadService.java | 58 +- .../service/impl/UploadServiceImpl.java | 144 +- .../exam/ability/upload/utils/FileUtils.java | 321 +- .../exam/ability/upload/utils/MediaUtils.java | 76 +- .../java/com/yf/exam/aspect/DictAspect.java | 215 +- .../exam/aspect/mybatis/QueryInterceptor.java | 177 +- .../aspect/mybatis/UpdateInterceptor.java | 126 +- .../com/yf/exam/aspect/utils/InjectUtils.java | 111 +- .../java/com/yf/exam/config/CorsConfig.java | 58 +- .../com/yf/exam/config/MultipartConfig.java | 53 +- .../com/yf/exam/config/MybatisConfig.java | 55 +- .../com/yf/exam/config/ScheduledConfig.java | 141 +- .../java/com/yf/exam/config/ShiroConfig.java | 242 +- .../com/yf/exam/config/SwaggerConfig.java | 155 +- .../exam/controller/ExamController.java | 233 +- .../com/yf/exam/modules/exam/dto/ExamDTO.java | 140 +- .../exam/modules/exam/dto/ExamDepartDTO.java | 55 +- .../yf/exam/modules/exam/dto/ExamRepoDTO.java | 93 +- .../modules/exam/dto/ext/ExamRepoExtDTO.java | 50 +- .../exam/dto/request/ExamSaveReqDTO.java | 54 +- .../exam/dto/response/ExamOnlineRespDTO.java | 35 +- .../exam/dto/response/ExamReviewRespDTO.java | 53 +- .../com/yf/exam/modules/exam/entity/Exam.java | 155 +- .../exam/modules/exam/entity/ExamDepart.java | 65 +- .../yf/exam/modules/exam/entity/ExamRepo.java | 105 +- .../modules/exam/mapper/ExamDepartMapper.java | 28 +- .../exam/modules/exam/mapper/ExamMapper.java | 61 +- .../modules/exam/mapper/ExamRepoMapper.java | 39 +- .../exam/service/ExamDepartService.java | 42 +- .../modules/exam/service/ExamRepoService.java | 49 +- .../modules/exam/service/ExamService.java | 77 +- .../service/impl/ExamDepartServiceImpl.java | 88 +- .../service/impl/ExamRepoServiceImpl.java | 92 +- .../exam/service/impl/ExamServiceImpl.java | 209 +- exam-api/target/classes/application-dev.yml | 71 - exam-api/target/classes/application-local.yml | 85 - exam-api/target/classes/application.yml | 15 - .../com/yf/exam/ability/Constant.class | Bin 375 -> 0 bytes .../yf/exam/ability/job/enums/JobGroup.class | Bin 201 -> 0 bytes .../yf/exam/ability/job/enums/JobPrefix.class | Bin 212 -> 0 bytes .../exam/ability/job/service/JobService.class | Bin 659 -> 0 bytes .../job/service/impl/JobServiceImpl.class | Bin 5661 -> 0 bytes .../ability/shiro/CNFilterFactoryBean.class | Bin 1354 -> 0 bytes .../yf/exam/ability/shiro/ShiroRealm.class | Bin 4222 -> 0 bytes .../yf/exam/ability/shiro/aop/JwtFilter.class | Bin 3054 -> 0 bytes .../yf/exam/ability/shiro/jwt/JwtToken.class | Bin 1920 -> 0 bytes .../yf/exam/ability/shiro/jwt/JwtUtils.class | Bin 3481 -> 0 bytes .../ability/upload/config/UploadConfig.class | Bin 2838 -> 0 bytes .../upload/controller/UploadController.class | Bin 2516 -> 0 bytes .../ability/upload/dto/UploadReqDTO.class | Bin 2086 -> 0 bytes .../ability/upload/dto/UploadRespDTO.class | Bin 1996 -> 0 bytes .../upload/service/UploadService.class | Bin 434 -> 0 bytes .../service/impl/UploadServiceImpl.class | Bin 5163 -> 0 bytes .../exam/ability/upload/utils/FileUtils.class | Bin 4802 -> 0 bytes .../ability/upload/utils/MediaUtils$1.class | Bin 675 -> 0 bytes .../ability/upload/utils/MediaUtils.class | Bin 1335 -> 0 bytes .../com/yf/exam/aspect/DictAspect.class | Bin 2751 -> 0 bytes .../aspect/mybatis/QueryInterceptor.class | Bin 5532 -> 0 bytes .../aspect/mybatis/UpdateInterceptor.class | Bin 3370 -> 0 bytes .../yf/exam/aspect/utils/InjectUtils.class | Bin 3287 -> 0 bytes .../com/yf/exam/config/CorsConfig.class | Bin 1843 -> 0 bytes .../com/yf/exam/config/MultipartConfig.class | Bin 1048 -> 0 bytes .../com/yf/exam/config/MybatisConfig.class | Bin 1131 -> 0 bytes .../com/yf/exam/config/ScheduledConfig.class | Bin 4178 -> 0 bytes .../com/yf/exam/config/ShiroConfig.class | Bin 4270 -> 0 bytes .../com/yf/exam/config/SwaggerConfig.class | Bin 3166 -> 0 bytes .../classes/com/yf/exam/core/annon/Dict.class | Bin 503 -> 0 bytes .../com/yf/exam/core/api/ApiError.class | Bin 3809 -> 0 bytes .../com/yf/exam/core/api/ApiRest.class | Bin 4051 -> 0 bytes .../core/api/controller/BaseController.class | Bin 3840 -> 0 bytes .../com/yf/exam/core/api/dto/BaseDTO.class | Bin 983 -> 0 bytes .../yf/exam/core/api/dto/BaseIdReqDTO.class | Bin 2366 -> 0 bytes .../yf/exam/core/api/dto/BaseIdRespDTO.class | Bin 1958 -> 0 bytes .../yf/exam/core/api/dto/BaseIdsReqDTO.class | Bin 2701 -> 0 bytes .../exam/core/api/dto/BaseStateReqDTO.class | Bin 3004 -> 0 bytes .../yf/exam/core/api/dto/PagingReqDTO.class | Bin 5031 -> 0 bytes .../yf/exam/core/api/dto/PagingRespDTO.class | Bin 801 -> 0 bytes .../exam/core/api/utils/JsonConverter.class | Bin 1996 -> 0 bytes .../com/yf/exam/core/enums/CommonState.class | Bin 400 -> 0 bytes .../com/yf/exam/core/enums/OpenType.class | Bin 393 -> 0 bytes .../core/exception/ServiceException.class | Bin 3011 -> 0 bytes .../exception/ServiceExceptionHandler.class | Bin 1523 -> 0 bytes .../com/yf/exam/core/utils/BeanMapper.class | Bin 2751 -> 0 bytes .../com/yf/exam/core/utils/CronUtils.class | Bin 816 -> 0 bytes .../com/yf/exam/core/utils/DateUtils.class | Bin 2172 -> 0 bytes .../com/yf/exam/core/utils/IpUtils.class | Bin 1281 -> 0 bytes .../com/yf/exam/core/utils/Reflections.class | Bin 10020 -> 0 bytes .../com/yf/exam/core/utils/SpringUtils.class | Bin 1449 -> 0 bytes .../com/yf/exam/core/utils/StringUtils.class | Bin 1604 -> 0 bytes .../exam/core/utils/excel/ExportExcel$1.class | Bin 1246 -> 0 bytes .../exam/core/utils/excel/ExportExcel.class | Bin 15277 -> 0 bytes .../exam/core/utils/excel/ImportExcel$1.class | Bin 1256 -> 0 bytes .../exam/core/utils/excel/ImportExcel.class | Bin 11011 -> 0 bytes .../utils/excel/annotation/ExcelField.class | Bin 778 -> 0 bytes .../core/utils/excel/fieldtype/ListType.class | Bin 1971 -> 0 bytes .../com/yf/exam/core/utils/file/Md5Util.class | Bin 1339 -> 0 bytes .../exam/core/utils/passwd/PassHandler.class | Bin 1833 -> 0 bytes .../yf/exam/core/utils/passwd/PassInfo.class | Bin 893 -> 0 bytes .../com/yf/exam/modules/Constant.class | Bin 361 -> 0 bytes .../exam/controller/ExamController.class | Bin 7641 -> 0 bytes .../yf/exam/modules/exam/dto/ExamDTO.class | Bin 9155 -> 0 bytes .../exam/modules/exam/dto/ExamDepartDTO.class | Bin 2870 -> 0 bytes .../exam/modules/exam/dto/ExamRepoDTO.class | Bin 6181 -> 0 bytes .../modules/exam/dto/ext/ExamRepoExtDTO.class | Bin 3148 -> 0 bytes .../exam/dto/request/ExamSaveReqDTO.class | Bin 3061 -> 0 bytes .../exam/dto/response/ExamOnlineRespDTO.class | Bin 1243 -> 0 bytes .../exam/dto/response/ExamReviewRespDTO.class | Bin 2634 -> 0 bytes .../yf/exam/modules/exam/entity/Exam.class | Bin 8519 -> 0 bytes .../exam/modules/exam/entity/ExamDepart.class | Bin 3108 -> 0 bytes .../exam/modules/exam/entity/ExamRepo.class | Bin 6359 -> 0 bytes .../exam/mapper/ExamDepartMapper.class | Bin 336 -> 0 bytes .../exam/modules/exam/mapper/ExamMapper.class | Bin 1377 -> 0 bytes .../modules/exam/mapper/ExamRepoMapper.class | Bin 630 -> 0 bytes .../exam/service/ExamDepartService.class | Bin 664 -> 0 bytes .../exam/service/ExamRepoService.class | Bin 768 -> 0 bytes .../modules/exam/service/ExamService.class | Bin 1404 -> 0 bytes .../service/impl/ExamDepartServiceImpl.class | Bin 4948 -> 0 bytes .../service/impl/ExamRepoServiceImpl.class | Bin 5133 -> 0 bytes .../exam/service/impl/ExamServiceImpl.class | Bin 7307 -> 0 bytes .../paper/controller/PaperController.class | Bin 6301 -> 0 bytes .../yf/exam/modules/paper/dto/PaperDTO.class | Bin 10874 -> 0 bytes .../modules/paper/dto/PaperQuAnswerDTO.class | Bin 5570 -> 0 bytes .../exam/modules/paper/dto/PaperQuDTO.class | Bin 6630 -> 0 bytes .../paper/dto/ext/PaperQuAnswerExtDTO.class | Bin 2490 -> 0 bytes .../paper/dto/ext/PaperQuDetailDTO.class | Bin 3405 -> 0 bytes .../paper/dto/request/PaperAnswerDTO.class | Bin 2758 -> 0 bytes .../paper/dto/request/PaperCreateReqDTO.class | Bin 2440 -> 0 bytes .../paper/dto/request/PaperListReqDTO.class | Bin 4042 -> 0 bytes .../paper/dto/request/PaperQuQueryDTO.class | Bin 2398 -> 0 bytes .../dto/response/ExamDetailRespDTO.class | Bin 4076 -> 0 bytes .../dto/response/ExamResultRespDTO.class | Bin 2349 -> 0 bytes .../paper/dto/response/PaperListRespDTO.class | Bin 2009 -> 0 bytes .../yf/exam/modules/paper/entity/Paper.class | Bin 10799 -> 0 bytes .../exam/modules/paper/entity/PaperQu.class | Bin 6674 -> 0 bytes .../modules/paper/entity/PaperQuAnswer.class | Bin 5607 -> 0 bytes .../exam/modules/paper/enums/ExamState.class | Bin 487 -> 0 bytes .../exam/modules/paper/enums/PaperState.class | Bin 481 -> 0 bytes .../exam/modules/paper/job/BreakExamJob.class | Bin 2268 -> 0 bytes .../modules/paper/mapper/PaperMapper.class | Bin 1126 -> 0 bytes .../paper/mapper/PaperQuAnswerMapper.class | Bin 706 -> 0 bytes .../modules/paper/mapper/PaperQuMapper.class | Bin 763 -> 0 bytes .../paper/service/PaperQuAnswerService.class | Bin 1087 -> 0 bytes .../paper/service/PaperQuService.class | Bin 1290 -> 0 bytes .../modules/paper/service/PaperService.class | Bin 1427 -> 0 bytes .../impl/PaperQuAnswerServiceImpl$1.class | Bin 1001 -> 0 bytes .../impl/PaperQuAnswerServiceImpl.class | Bin 5803 -> 0 bytes .../service/impl/PaperQuServiceImpl$1.class | Bin 959 -> 0 bytes .../service/impl/PaperQuServiceImpl.class | Bin 7339 -> 0 bytes .../paper/service/impl/PaperServiceImpl.class | Bin 21769 -> 0 bytes .../modules/qu/controller/QuController.class | Bin 11664 -> 0 bytes .../yf/exam/modules/qu/dto/QuAnswerDTO.class | Bin 4472 -> 0 bytes .../com/yf/exam/modules/qu/dto/QuDTO.class | Bin 6109 -> 0 bytes .../yf/exam/modules/qu/dto/QuRepoDTO.class | Bin 3888 -> 0 bytes .../modules/qu/dto/export/QuExportDTO.class | Bin 7922 -> 0 bytes .../modules/qu/dto/export/QuImportDTO.class | Bin 4417 -> 0 bytes .../exam/modules/qu/dto/ext/QuDetailDTO.class | Bin 3000 -> 0 bytes .../qu/dto/request/QuQueryReqDTO.class | Bin 3839 -> 0 bytes .../qu/dto/request/QuRepoBatchReqDTO.class | Bin 3384 -> 0 bytes .../com/yf/exam/modules/qu/entity/Qu.class | Bin 6122 -> 0 bytes .../yf/exam/modules/qu/entity/QuAnswer.class | Bin 4580 -> 0 bytes .../yf/exam/modules/qu/entity/QuRepo.class | Bin 4096 -> 0 bytes .../com/yf/exam/modules/qu/enums/QuType.class | Bin 429 -> 0 bytes .../modules/qu/mapper/QuAnswerMapper.class | Bin 326 -> 0 bytes .../yf/exam/modules/qu/mapper/QuMapper.class | Bin 1480 -> 0 bytes .../exam/modules/qu/mapper/QuRepoMapper.class | Bin 320 -> 0 bytes .../modules/qu/service/QuAnswerService.class | Bin 1129 -> 0 bytes .../modules/qu/service/QuRepoService.class | Bin 1291 -> 0 bytes .../exam/modules/qu/service/QuService.class | Bin 1651 -> 0 bytes .../service/impl/QuAnswerServiceImpl$1.class | Bin 948 -> 0 bytes .../qu/service/impl/QuAnswerServiceImpl.class | Bin 8257 -> 0 bytes .../qu/service/impl/QuRepoServiceImpl$1.class | Bin 934 -> 0 bytes .../qu/service/impl/QuRepoServiceImpl.class | Bin 9823 -> 0 bytes .../qu/service/impl/QuServiceImpl.class | Bin 13123 -> 0 bytes .../modules/qu/utils/ImageCheckUtils.class | Bin 1177 -> 0 bytes .../repo/controller/RepoController.class | Bin 4513 -> 0 bytes .../yf/exam/modules/repo/dto/RepoDTO.class | Bin 4477 -> 0 bytes .../modules/repo/dto/request/RepoReqDTO.class | Bin 2780 -> 0 bytes .../repo/dto/response/RepoRespDTO.class | Bin 3136 -> 0 bytes .../yf/exam/modules/repo/entity/Repo.class | Bin 4589 -> 0 bytes .../exam/modules/repo/mapper/RepoMapper.class | Bin 870 -> 0 bytes .../modules/repo/service/RepoService.class | Bin 747 -> 0 bytes .../repo/service/impl/RepoServiceImpl.class | Bin 2319 -> 0 bytes .../controller/SysConfigController.class | Bin 2794 -> 0 bytes .../modules/sys/config/dto/SysConfigDTO.class | Bin 3900 -> 0 bytes .../modules/sys/config/entity/SysConfig.class | Bin 4143 -> 0 bytes .../sys/config/mapper/SysConfigMapper.class | Bin 345 -> 0 bytes .../sys/config/service/SysConfigService.class | Bin 425 -> 0 bytes .../service/impl/SysConfigServiceImpl.class | Bin 1811 -> 0 bytes .../controller/SysDepartController.class | Bin 6068 -> 0 bytes .../modules/sys/depart/dto/SysDepartDTO.class | Bin 4521 -> 0 bytes .../depart/dto/request/DepartSortReqDTO.class | Bin 2540 -> 0 bytes .../dto/response/SysDepartTreeDTO.class | Bin 2466 -> 0 bytes .../modules/sys/depart/entity/SysDepart.class | Bin 4705 -> 0 bytes .../sys/depart/mapper/SysDepartMapper.class | Bin 908 -> 0 bytes .../sys/depart/service/SysDepartService.class | Bin 1339 -> 0 bytes .../service/impl/SysDepartServiceImpl.class | Bin 12336 -> 0 bytes .../sys/system/mapper/SysDictMapper.class | Bin 539 -> 0 bytes .../sys/system/service/SysDictService.class | Bin 333 -> 0 bytes .../service/impl/SysDictServiceImpl.class | Bin 1048 -> 0 bytes .../user/controller/SysRoleController.class | Bin 3238 -> 0 bytes .../user/controller/SysUserController.class | Bin 9224 -> 0 bytes .../modules/sys/user/dto/SysRoleDTO.class | Bin 2392 -> 0 bytes .../modules/sys/user/dto/SysUserDTO.class | Bin 6669 -> 0 bytes .../modules/sys/user/dto/SysUserRoleDTO.class | Bin 2868 -> 0 bytes .../user/dto/request/SysUserLoginReqDTO.class | Bin 2495 -> 0 bytes .../user/dto/request/SysUserSaveReqDTO.class | Bin 5189 -> 0 bytes .../user/dto/request/SysUserTokenReqDTO.class | Bin 1987 -> 0 bytes .../user/dto/response/SysUserLoginDTO.class | Bin 6965 -> 0 bytes .../modules/sys/user/entity/SysRole.class | Bin 2627 -> 0 bytes .../modules/sys/user/entity/SysUser.class | Bin 6778 -> 0 bytes .../modules/sys/user/entity/SysUserRole.class | Bin 3108 -> 0 bytes .../sys/user/mapper/SysRoleMapper.class | Bin 335 -> 0 bytes .../sys/user/mapper/SysUserMapper.class | Bin 335 -> 0 bytes .../sys/user/mapper/SysUserRoleMapper.class | Bin 347 -> 0 bytes .../sys/user/service/SysRoleService.class | Bin 684 -> 0 bytes .../sys/user/service/SysUserRoleService.class | Bin 1148 -> 0 bytes .../sys/user/service/SysUserService.class | Bin 1333 -> 0 bytes .../service/impl/SysRoleServiceImpl$1.class | Bin 977 -> 0 bytes .../service/impl/SysRoleServiceImpl.class | Bin 2942 -> 0 bytes .../impl/SysUserRoleServiceImpl$1.class | Bin 1005 -> 0 bytes .../service/impl/SysUserRoleServiceImpl.class | Bin 8335 -> 0 bytes .../service/impl/SysUserServiceImpl$1.class | Bin 977 -> 0 bytes .../service/impl/SysUserServiceImpl.class | Bin 11705 -> 0 bytes .../com/yf/exam/modules/user/UserUtils.class | Bin 1505 -> 0 bytes .../book/controller/UserBookController.class | Bin 3392 -> 0 bytes .../modules/user/book/dto/UserBookDTO.class | Bin 6115 -> 0 bytes .../modules/user/book/entity/UserBook.class | Bin 6249 -> 0 bytes .../user/book/mapper/UserBookMapper.class | Bin 340 -> 0 bytes .../user/book/service/UserBookService.class | Bin 877 -> 0 bytes .../service/impl/UserBookServiceImpl$1.class | Bin 990 -> 0 bytes .../service/impl/UserBookServiceImpl.class | Bin 9128 -> 0 bytes .../exam/controller/UserExamController.class | Bin 2410 -> 0 bytes .../modules/user/exam/dto/UserExamDTO.class | Bin 5768 -> 0 bytes .../exam/dto/request/UserExamReqDTO.class | Bin 2480 -> 0 bytes .../exam/dto/response/UserExamRespDTO.class | Bin 2486 -> 0 bytes .../modules/user/exam/entity/UserExam.class | Bin 5876 -> 0 bytes .../user/exam/mapper/UserExamMapper.class | Bin 919 -> 0 bytes .../user/exam/service/UserExamService.class | Bin 896 -> 0 bytes .../service/impl/UserExamServiceImpl.class | Bin 6031 -> 0 bytes .../classes/mapper/exam/ExamDepartMapper.xml | 17 - .../target/classes/mapper/exam/ExamMapper.xml | 96 - .../classes/mapper/exam/ExamRepoMapper.xml | 38 - .../classes/mapper/paper/PaperMapper.xml | 65 - .../mapper/paper/PaperQuAnswerMapper.xml | 46 - .../classes/mapper/paper/PaperQuMapper.xml | 58 - .../classes/mapper/qu/QuAnswerMapper.xml | 20 - .../target/classes/mapper/qu/QuMapper.xml | 104 - .../target/classes/mapper/qu/QuRepoMapper.xml | 20 - .../target/classes/mapper/repo/RepoMapper.xml | 51 - .../mapper/sys/depart/SysDepartMapper.xml | 40 - .../mapper/sys/system/SysDictMapper.xml | 9 - .../classes/mapper/sys/user/SysRoleMapper.xml | 16 - .../classes/mapper/sys/user/SysUserMapper.xml | 24 - .../mapper/sys/user/SysUserRoleMapper.xml | 17 - .../classes/mapper/user/UserBookMapper.xml | 23 - .../classes/mapper/user/UserExamMapper.xml | 54 - exam-api/target/classes/static/favicon.png | Bin 9194 -> 0 bytes exam-api/target/classes/static/index.html | 14 - exam-api/target/classes/static/readMe.txt | 2 - .../static/fonts/element-icons.535877f5.woff | Bin 28200 -> 0 bytes .../static/fonts/element-icons.732389de.ttf | Bin 55956 -> 0 bytes .../static/static/img/401.089007e7.gif | Bin 164227 -> 0 bytes .../static/static/img/404.a57b6f31.png | Bin 98071 -> 0 bytes .../static/static/img/404_cloud.0f4bc32b.png | Bin 4766 -> 0 bytes .../static/static/img/contact.22828125.png | Bin 44951 -> 0 bytes .../classes/static/static/img/h5.ac62244a.png | Bin 25894 -> 0 bytes .../static/static/img/login-bg.5825f033.svg | 69 - .../classes/static/static/img/mp.1a3d1b7d.jpg | Bin 91768 -> 0 bytes exam-api/target/classes/static/static/js/0.js | 219 - exam-api/target/classes/static/static/js/1.js | 133 - .../target/classes/static/static/js/10.js | 147 - .../target/classes/static/static/js/11.js | 141 - .../target/classes/static/static/js/12.js | 119 - .../target/classes/static/static/js/13.js | 121 - .../target/classes/static/static/js/14.js | 123 - .../target/classes/static/static/js/15.js | 121 - .../target/classes/static/static/js/16.js | 108 - .../target/classes/static/static/js/17.js | 109 - .../target/classes/static/static/js/18.js | 109 - .../target/classes/static/static/js/19.js | 99 - exam-api/target/classes/static/static/js/2.js | 111 - .../target/classes/static/static/js/20.js | 87 - .../target/classes/static/static/js/21.js | 87 - .../target/classes/static/static/js/22.js | 87 - .../target/classes/static/static/js/23.js | 87 - .../target/classes/static/static/js/24.js | 87 - .../target/classes/static/static/js/25.js | 63 - .../target/classes/static/static/js/26.js | 63 - .../target/classes/static/static/js/27.js | 39 - exam-api/target/classes/static/static/js/3.js | 75 - exam-api/target/classes/static/static/js/4.js | 323 - exam-api/target/classes/static/static/js/5.js | 193 - exam-api/target/classes/static/static/js/6.js | 193 - exam-api/target/classes/static/static/js/7.js | 193 - exam-api/target/classes/static/static/js/8.js | 183 - exam-api/target/classes/static/static/js/9.js | 147 - .../target/classes/static/static/js/app.js | 3100 - .../classes/static/static/js/chunk-commons.js | 251 - .../static/static/js/chunk-elementUI.js | 536 - .../classes/static/static/js/chunk-libs.js | 3892 -- .../classes/static/static/js/runtime.js | 223 - 326 files changed, 1894 insertions(+), 65730 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/yfexam-exam-main.iml delete mode 100644 .vscode/settings.json delete mode 100644 docs/运行包/logs/yf-exam-lite/spring.log delete mode 100644 exam-api/.idea/.gitignore delete mode 100644 exam-api/.idea/compiler.xml delete mode 100644 exam-api/.idea/misc.xml delete mode 100644 exam-api/target/classes/application-dev.yml delete mode 100644 exam-api/target/classes/application-local.yml delete mode 100644 exam-api/target/classes/application.yml delete mode 100644 exam-api/target/classes/com/yf/exam/ability/Constant.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/job/enums/JobGroup.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/job/enums/JobPrefix.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/job/service/JobService.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/job/service/impl/JobServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/shiro/CNFilterFactoryBean.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/shiro/ShiroRealm.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/shiro/aop/JwtFilter.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/shiro/jwt/JwtToken.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/shiro/jwt/JwtUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/config/UploadConfig.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/controller/UploadController.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/dto/UploadReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/dto/UploadRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/service/UploadService.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/service/impl/UploadServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/utils/FileUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/utils/MediaUtils$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/ability/upload/utils/MediaUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/aspect/DictAspect.class delete mode 100644 exam-api/target/classes/com/yf/exam/aspect/mybatis/QueryInterceptor.class delete mode 100644 exam-api/target/classes/com/yf/exam/aspect/mybatis/UpdateInterceptor.class delete mode 100644 exam-api/target/classes/com/yf/exam/aspect/utils/InjectUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/config/CorsConfig.class delete mode 100644 exam-api/target/classes/com/yf/exam/config/MultipartConfig.class delete mode 100644 exam-api/target/classes/com/yf/exam/config/MybatisConfig.class delete mode 100644 exam-api/target/classes/com/yf/exam/config/ScheduledConfig.class delete mode 100644 exam-api/target/classes/com/yf/exam/config/ShiroConfig.class delete mode 100644 exam-api/target/classes/com/yf/exam/config/SwaggerConfig.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/annon/Dict.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/ApiError.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/ApiRest.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/controller/BaseController.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/dto/BaseDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/dto/BaseIdReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/dto/BaseIdRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/dto/BaseIdsReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/dto/BaseStateReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/dto/PagingReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/dto/PagingRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/api/utils/JsonConverter.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/enums/CommonState.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/enums/OpenType.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/exception/ServiceException.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/exception/ServiceExceptionHandler.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/BeanMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/CronUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/DateUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/IpUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/Reflections.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/SpringUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/StringUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/excel/ExportExcel$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/excel/ExportExcel.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/excel/ImportExcel$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/excel/ImportExcel.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/excel/annotation/ExcelField.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/excel/fieldtype/ListType.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/file/Md5Util.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/passwd/PassHandler.class delete mode 100644 exam-api/target/classes/com/yf/exam/core/utils/passwd/PassInfo.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/Constant.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/controller/ExamController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/dto/ExamDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/dto/ExamDepartDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/dto/ExamRepoDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/dto/request/ExamSaveReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/dto/response/ExamReviewRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/entity/Exam.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/entity/ExamDepart.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/entity/ExamRepo.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamDepartMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamRepoMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/service/ExamDepartService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/service/ExamRepoService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/service/ExamService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/service/impl/ExamDepartServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/service/impl/ExamRepoServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/exam/service/impl/ExamServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/controller/PaperController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/PaperDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/PaperQuAnswerDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/PaperQuDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperAnswerDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperCreateReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperListReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperQuQueryDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/response/ExamDetailRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/response/ExamResultRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/dto/response/PaperListRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/entity/Paper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/entity/PaperQu.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/entity/PaperQuAnswer.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/enums/ExamState.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/enums/PaperState.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/job/BreakExamJob.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/mapper/PaperMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/mapper/PaperQuAnswerMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/mapper/PaperQuMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/service/PaperQuAnswerService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/service/PaperQuService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/service/PaperService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperQuAnswerServiceImpl$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperQuAnswerServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperQuServiceImpl$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperQuServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/controller/QuController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/dto/QuAnswerDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/dto/QuDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/dto/QuRepoDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/dto/export/QuExportDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/dto/export/QuImportDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/dto/ext/QuDetailDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/dto/request/QuQueryReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/dto/request/QuRepoBatchReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/entity/Qu.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/entity/QuAnswer.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/entity/QuRepo.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/enums/QuType.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/mapper/QuAnswerMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/mapper/QuMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/mapper/QuRepoMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/service/QuAnswerService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/service/QuRepoService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/service/QuService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuAnswerServiceImpl$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuAnswerServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuRepoServiceImpl$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuRepoServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/qu/utils/ImageCheckUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/repo/controller/RepoController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/repo/dto/RepoDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/repo/dto/request/RepoReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/repo/dto/response/RepoRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/repo/entity/Repo.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/repo/mapper/RepoMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/repo/service/RepoService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/repo/service/impl/RepoServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/config/controller/SysConfigController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/config/dto/SysConfigDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/config/entity/SysConfig.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/config/mapper/SysConfigMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/config/service/SysConfigService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/config/service/impl/SysConfigServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/depart/controller/SysDepartController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/depart/dto/SysDepartDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/depart/dto/request/DepartSortReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/depart/entity/SysDepart.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/depart/mapper/SysDepartMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/depart/service/SysDepartService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/depart/service/impl/SysDepartServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/system/mapper/SysDictMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/system/service/SysDictService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/system/service/impl/SysDictServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/controller/SysRoleController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/controller/SysUserController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysRoleDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysUserDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysUserRoleDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserLoginReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserSaveReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserTokenReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/dto/response/SysUserLoginDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysRole.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysUser.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysUserRole.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysRoleMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysUserMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysUserRoleMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysRoleService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysUserRoleService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysUserService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysRoleServiceImpl$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysRoleServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysUserRoleServiceImpl$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysUserRoleServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysUserServiceImpl$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysUserServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/UserUtils.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/book/controller/UserBookController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/book/dto/UserBookDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/book/entity/UserBook.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/book/mapper/UserBookMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/book/service/UserBookService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/book/service/impl/UserBookServiceImpl$1.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/book/service/impl/UserBookServiceImpl.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/exam/controller/UserExamController.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/exam/dto/UserExamDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/exam/dto/request/UserExamReqDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/exam/dto/response/UserExamRespDTO.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/exam/entity/UserExam.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/exam/mapper/UserExamMapper.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/exam/service/UserExamService.class delete mode 100644 exam-api/target/classes/com/yf/exam/modules/user/exam/service/impl/UserExamServiceImpl.class delete mode 100644 exam-api/target/classes/mapper/exam/ExamDepartMapper.xml delete mode 100644 exam-api/target/classes/mapper/exam/ExamMapper.xml delete mode 100644 exam-api/target/classes/mapper/exam/ExamRepoMapper.xml delete mode 100644 exam-api/target/classes/mapper/paper/PaperMapper.xml delete mode 100644 exam-api/target/classes/mapper/paper/PaperQuAnswerMapper.xml delete mode 100644 exam-api/target/classes/mapper/paper/PaperQuMapper.xml delete mode 100644 exam-api/target/classes/mapper/qu/QuAnswerMapper.xml delete mode 100644 exam-api/target/classes/mapper/qu/QuMapper.xml delete mode 100644 exam-api/target/classes/mapper/qu/QuRepoMapper.xml delete mode 100644 exam-api/target/classes/mapper/repo/RepoMapper.xml delete mode 100644 exam-api/target/classes/mapper/sys/depart/SysDepartMapper.xml delete mode 100644 exam-api/target/classes/mapper/sys/system/SysDictMapper.xml delete mode 100644 exam-api/target/classes/mapper/sys/user/SysRoleMapper.xml delete mode 100644 exam-api/target/classes/mapper/sys/user/SysUserMapper.xml delete mode 100644 exam-api/target/classes/mapper/sys/user/SysUserRoleMapper.xml delete mode 100644 exam-api/target/classes/mapper/user/UserBookMapper.xml delete mode 100644 exam-api/target/classes/mapper/user/UserExamMapper.xml delete mode 100644 exam-api/target/classes/static/favicon.png delete mode 100644 exam-api/target/classes/static/index.html delete mode 100644 exam-api/target/classes/static/readMe.txt delete mode 100644 exam-api/target/classes/static/static/fonts/element-icons.535877f5.woff delete mode 100644 exam-api/target/classes/static/static/fonts/element-icons.732389de.ttf delete mode 100644 exam-api/target/classes/static/static/img/401.089007e7.gif delete mode 100644 exam-api/target/classes/static/static/img/404.a57b6f31.png delete mode 100644 exam-api/target/classes/static/static/img/404_cloud.0f4bc32b.png delete mode 100644 exam-api/target/classes/static/static/img/contact.22828125.png delete mode 100644 exam-api/target/classes/static/static/img/h5.ac62244a.png delete mode 100644 exam-api/target/classes/static/static/img/login-bg.5825f033.svg delete mode 100644 exam-api/target/classes/static/static/img/mp.1a3d1b7d.jpg delete mode 100644 exam-api/target/classes/static/static/js/0.js delete mode 100644 exam-api/target/classes/static/static/js/1.js delete mode 100644 exam-api/target/classes/static/static/js/10.js delete mode 100644 exam-api/target/classes/static/static/js/11.js delete mode 100644 exam-api/target/classes/static/static/js/12.js delete mode 100644 exam-api/target/classes/static/static/js/13.js delete mode 100644 exam-api/target/classes/static/static/js/14.js delete mode 100644 exam-api/target/classes/static/static/js/15.js delete mode 100644 exam-api/target/classes/static/static/js/16.js delete mode 100644 exam-api/target/classes/static/static/js/17.js delete mode 100644 exam-api/target/classes/static/static/js/18.js delete mode 100644 exam-api/target/classes/static/static/js/19.js delete mode 100644 exam-api/target/classes/static/static/js/2.js delete mode 100644 exam-api/target/classes/static/static/js/20.js delete mode 100644 exam-api/target/classes/static/static/js/21.js delete mode 100644 exam-api/target/classes/static/static/js/22.js delete mode 100644 exam-api/target/classes/static/static/js/23.js delete mode 100644 exam-api/target/classes/static/static/js/24.js delete mode 100644 exam-api/target/classes/static/static/js/25.js delete mode 100644 exam-api/target/classes/static/static/js/26.js delete mode 100644 exam-api/target/classes/static/static/js/27.js delete mode 100644 exam-api/target/classes/static/static/js/3.js delete mode 100644 exam-api/target/classes/static/static/js/4.js delete mode 100644 exam-api/target/classes/static/static/js/5.js delete mode 100644 exam-api/target/classes/static/static/js/6.js delete mode 100644 exam-api/target/classes/static/static/js/7.js delete mode 100644 exam-api/target/classes/static/static/js/8.js delete mode 100644 exam-api/target/classes/static/static/js/9.js delete mode 100644 exam-api/target/classes/static/static/js/app.js delete mode 100644 exam-api/target/classes/static/static/js/chunk-commons.js delete mode 100644 exam-api/target/classes/static/static/js/chunk-elementUI.js delete mode 100644 exam-api/target/classes/static/static/js/chunk-libs.js delete mode 100644 exam-api/target/classes/static/static/js/runtime.js diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index f78f415..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index d86c5f3..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 4714347..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/yfexam-exam-main.iml b/.idea/yfexam-exam-main.iml deleted file mode 100644 index d6ebd48..0000000 --- a/.idea/yfexam-exam-main.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 7b016a8..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "java.compile.nullAnalysis.mode": "automatic" -} \ No newline at end of file diff --git a/docs/运行包/application-local.yml b/docs/运行包/application-local.yml index 0b0723e..00b1fcb 100644 --- a/docs/运行包/application-local.yml +++ b/docs/运行包/application-local.yml @@ -12,7 +12,7 @@ spring: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/yf_exam?useSSL=false&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&allowPublicKeyRetrieval=true username: root - password: 123456 + password: root # druid相关配置 druid: max-active: 5000 @@ -68,7 +68,7 @@ server: conf: upload: # 物理文件存储位置,以/结束,windows已正斜杠,如:d:/exam-upload/ - dir: S:/upload/ + dir: /data/upload/ # 访问地址,注意不要去除/upload/file/,此节点为虚拟标识符 # 如:http://localhost:8101/upload/file/exam.jpg,对应物理文件为:/data/upload/exam.jpg url: http://localhost:8101/upload/file/ diff --git a/docs/运行包/logs/yf-exam-lite/spring.log b/docs/运行包/logs/yf-exam-lite/spring.log deleted file mode 100644 index fefd121..0000000 --- a/docs/运行包/logs/yf-exam-lite/spring.log +++ /dev/null @@ -1,50432 +0,0 @@ -2024-09-20 17:47:12.793 DEBUG 22604 --- [main] .c.l.ClasspathLoggingApplicationListener : Application started with classpath: [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-starter-web-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-starter-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-starter-logging-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/logback-classic-1.2.3.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/logback-core-1.2.3.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/log4j-to-slf4j-2.17.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/log4j-api-2.17.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jul-to-slf4j-1.7.26.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/javax.annotation-api-1.3.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-core-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-jcl-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/snakeyaml-1.23.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-starter-json-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jackson-datatype-jdk8-2.9.8.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jackson-datatype-jsr310-2.9.8.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jackson-module-parameter-names-2.9.8.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-starter-tomcat-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-el-9.0.17.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-websocket-9.0.17.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/hibernate-validator-6.0.16.Final.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/validation-api-2.0.1.Final.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jboss-logging-3.3.2.Final.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-web-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-beans-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-webmvc-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-aop-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-context-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-expression-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-starter-quartz-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-context-support-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-tx-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/quartz-2.3.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mchange-commons-java-0.2.15.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/HikariCP-java7-2.4.13.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/aspectjweaver-1.9.5.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/fastjson-2.0.24.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/fastjson2-extension-2.0.24.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/fastjson2-2.0.24.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/dozer-5.5.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/commons-beanutils-1.9.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/commons-lang3-3.8.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jcl-over-slf4j-1.7.26.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mybatis-plus-3.4.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mybatis-plus-extension-3.4.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mybatis-plus-core-3.4.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mybatis-plus-annotation-3.4.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jsqlparser-3.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mybatis-3.5.6.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mybatis-spring-2.0.5.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mybatis-plus-boot-starter-3.4.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-autoconfigure-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-boot-starter-jdbc-2.1.4.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/HikariCP-3.2.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-jdbc-5.1.6.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mysql-connector-java-8.0.11.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/lombok-1.18.4.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/dom4j-2.1.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger2-2.9.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/swagger-annotations-1.5.20.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/swagger-models-1.5.20.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jackson-annotations-2.9.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spi-2.9.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-core-2.9.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/byte-buddy-1.9.12.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/guava-20.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/classmate-1.4.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-plugin-core-1.2.0.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/spring-plugin-metadata-1.2.0.RELEASE.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/mapstruct-1.2.0.Final.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/swagger-bootstrap-ui-1.9.3.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/poi-3.9.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/commons-codec-1.11.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/poi-ooxml-3.9.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/dom4j-1.6.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/xml-apis-1.4.01.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/poi-ooxml-schemas-3.9.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/xmlbeans-2.3.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/stax-api-1.0.1.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/java-jwt-3.7.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jackson-databind-2.9.8.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/jackson-core-2.9.8.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-spring-boot-starter-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-spring-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-core-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-lang-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-cache-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-crypto-hash-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-crypto-core-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-crypto-cipher-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-config-core-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-config-ogdl-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-event-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/shiro-web-1.8.0.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/encoder-1.2.2.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/druid-spring-boot-starter-1.2.6.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/druid-1.2.6.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/slf4j-api-1.7.26.jar!/, jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/commons-io-2.11.0.jar!/] -2024-09-20 17:47:12.900 DEBUG 22604 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.application.name' in PropertySource 'configurationProperties' with value of type String -2024-09-20 17:47:12.904 INFO 22604 --- [main] com.yf.exam.ExamApplication : Starting ExamApplication v1.0 on lang with PID 22604 (S:\yfexam-exam-main\docs\а\exam-api.jar started by in S:\yfexam-exam-main\docs\а) -2024-09-20 17:47:12.905 DEBUG 22604 --- [main] com.yf.exam.ExamApplication : Running with Spring Boot v2.1.4.RELEASE, Spring v5.1.6.RELEASE -2024-09-20 17:47:12.905 INFO 22604 --- [main] com.yf.exam.ExamApplication : The following profiles are active: dev -2024-09-20 17:47:12.905 DEBUG 22604 --- [main] o.s.boot.SpringApplication : Loading source class com.yf.exam.ExamApplication -2024-09-20 17:47:12.939 DEBUG 22604 --- [main] o.s.b.c.c.ConfigFileApplicationListener : Activated activeProfiles dev -2024-09-20 17:47:12.940 DEBUG 22604 --- [main] o.s.b.c.c.ConfigFileApplicationListener : Loaded config file 'file:application-local.yml' (file:application-local.yml) -2024-09-20 17:47:12.940 DEBUG 22604 --- [main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd -2024-09-20 17:47:12.952 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-09-20 17:47:12.962 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-09-20 17:47:12.994 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/mbeans/mbeans-descriptors.xml -2024-09-20 17:47:13.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : register('-//Apache Software Foundation//DTD Model MBeans Configuration File', 'jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/tomcat/util/modeler/mbeans-descriptors.dtd' -2024-09-20 17:47:13.023 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/user/book/service/impl/UserBookServiceImpl.class] -2024-09-20 17:47:13.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@67bd3e02) -2024-09-20 17:47:13.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:13.030 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:13.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:13.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:13.031 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.032 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:13.036 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/user/exam/controller/UserExamController.class] -2024-09-20 17:47:13.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.042 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/qu/service/impl/QuAnswerServiceImpl.class] -2024-09-20 17:47:13.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:13.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'MBeanFactory' -2024-09-20 17:47:13.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=MBeanFactory) -2024-09-20 17:47:13.053 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/depart/controller/SysDepartController.class] -2024-09-20 17:47:13.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.mbeans.MBeanFactory' -2024-09-20 17:47:13.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.mbeans.MBeanFactory) -2024-09-20 17:47:13.056 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/config/service/impl/SysConfigServiceImpl.class] -2024-09-20 17:47:13.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Factory for MBeans and corresponding components' -2024-09-20 17:47:13.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Factory for MBeans and corresponding components) -2024-09-20 17:47:13.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:13.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:13.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.060 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.062 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.062 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createAjpConnector' -2024-09-20 17:47:13.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createAjpConnector) -2024-09-20 17:47:13.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new AjpConnector' -2024-09-20 17:47:13.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new AjpConnector) -2024-09-20 17:47:13.067 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/user/controller/SysUserController.class] -2024-09-20 17:47:13.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.069 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/user/service/impl/SysRoleServiceImpl.class] -2024-09-20 17:47:13.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.070 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.070 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.073 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/exam/controller/ExamController.class] -2024-09-20 17:47:13.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.073 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/exam/service/impl/ExamDepartServiceImpl.class] -2024-09-20 17:47:13.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.075 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.075 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/exam/service/impl/ExamRepoServiceImpl.class] -2024-09-20 17:47:13.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.079 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/repo/controller/RepoController.class] -2024-09-20 17:47:13.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@26640c49) -2024-09-20 17:47:13.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.084 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/aspect/DictAspect.class] -2024-09-20 17:47:13.084 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.084 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'address' -2024-09-20 17:47:13.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=address) -2024-09-20 17:47:13.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The IP address on which to bind' -2024-09-20 17:47:13.085 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/qu/service/impl/QuServiceImpl.class] -2024-09-20 17:47:13.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The IP address on which to bind) -2024-09-20 17:47:13.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.087 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.087 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/system/service/impl/SysDictServiceImpl.class] -2024-09-20 17:47:13.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@76a52591) -2024-09-20 17:47:13.089 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/exam/service/impl/ExamServiceImpl.class] -2024-09-20 17:47:13.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.090 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/core/utils/SpringUtils.class] -2024-09-20 17:47:13.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'port' -2024-09-20 17:47:13.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=port) -2024-09-20 17:47:13.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'TCP port number to listen on' -2024-09-20 17:47:13.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=TCP port number to listen on) -2024-09-20 17:47:13.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int' -2024-09-20 17:47:13.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int) -2024-09-20 17:47:13.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.096 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.096 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/config/MybatisConfig.class] -2024-09-20 17:47:13.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6d9830bc) -2024-09-20 17:47:13.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.098 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/config/ScheduledConfig.class] -2024-09-20 17:47:13.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.099 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.100 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:13.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2a99f0a2) -2024-09-20 17:47:13.102 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/config/SwaggerConfig.class] -2024-09-20 17:47:13.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.102 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/ability/job/service/impl/JobServiceImpl.class] -2024-09-20 17:47:13.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.103 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/paper/job/BreakExamJob.class] -2024-09-20 17:47:13.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.104 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/paper/service/impl/PaperQuAnswerServiceImpl.class] -2024-09-20 17:47:13.104 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.104 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.112 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/user/book/controller/UserBookController.class] -2024-09-20 17:47:13.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createDataSourceRealm' -2024-09-20 17:47:13.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createDataSourceRealm) -2024-09-20 17:47:13.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new DataSource Realm' -2024-09-20 17:47:13.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new DataSource Realm) -2024-09-20 17:47:13.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.114 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/user/exam/service/impl/UserExamServiceImpl.class] -2024-09-20 17:47:13.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.115 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.115 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.116 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/qu/controller/QuController.class] -2024-09-20 17:47:13.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.117 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/qu/service/impl/QuRepoServiceImpl.class] -2024-09-20 17:47:13.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.120 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/depart/service/impl/SysDepartServiceImpl.class] -2024-09-20 17:47:13.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.120 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.121 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/config/controller/SysConfigController.class] -2024-09-20 17:47:13.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5f7e4556) -2024-09-20 17:47:13.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.123 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.123 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.123 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/user/controller/SysRoleController.class] -2024-09-20 17:47:13.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'dataSourceName' -2024-09-20 17:47:13.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=dataSourceName) -2024-09-20 17:47:13.124 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/user/service/impl/SysUserRoleServiceImpl.class] -2024-09-20 17:47:13.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The JNDI named JDBC DataSource' -2024-09-20 17:47:13.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The JNDI named JDBC DataSource) -2024-09-20 17:47:13.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.126 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/user/service/impl/SysUserServiceImpl.class] -2024-09-20 17:47:13.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.126 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3a07a2fb) -2024-09-20 17:47:13.128 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/repo/service/impl/RepoServiceImpl.class] -2024-09-20 17:47:13.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.129 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/ability/upload/service/impl/UploadServiceImpl.class] -2024-09-20 17:47:13.129 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.129 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.129 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/ability/shiro/ShiroRealm.class] -2024-09-20 17:47:13.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'roleNameCol' -2024-09-20 17:47:13.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=roleNameCol) -2024-09-20 17:47:13.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The column in the user role table that names a role' -2024-09-20 17:47:13.131 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/aspect/utils/InjectUtils.class] -2024-09-20 17:47:13.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The column in the user role table that names a role) -2024-09-20 17:47:13.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.133 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5bc05400) -2024-09-20 17:47:13.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.135 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.135 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'userCredCol' -2024-09-20 17:47:13.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=userCredCol) -2024-09-20 17:47:13.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The column in the user table that holds the user's credentials' -2024-09-20 17:47:13.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The column in the user table that holds the user's credentials) -2024-09-20 17:47:13.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.138 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.138 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/paper/controller/PaperController.class] -2024-09-20 17:47:13.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@54b2bc25) -2024-09-20 17:47:13.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.140 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.145 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'userNameCol' -2024-09-20 17:47:13.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=userNameCol) -2024-09-20 17:47:13.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The column in the user table that holds the user's username' -2024-09-20 17:47:13.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The column in the user table that holds the user's username) -2024-09-20 17:47:13.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.147 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.147 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/core/exception/ServiceExceptionHandler.class] -2024-09-20 17:47:13.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.148 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/config/CorsConfig.class] -2024-09-20 17:47:13.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.148 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/config/MultipartConfig.class] -2024-09-20 17:47:13.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@79cb1710) -2024-09-20 17:47:13.148 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/config/ShiroConfig.class] -2024-09-20 17:47:13.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.149 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/ability/upload/config/UploadConfig.class] -2024-09-20 17:47:13.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.149 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.149 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'userRoleTable' -2024-09-20 17:47:13.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=userRoleTable) -2024-09-20 17:47:13.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The table that holds the relation between user's and roles' -2024-09-20 17:47:13.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The table that holds the relation between user's and roles) -2024-09-20 17:47:13.151 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/ability/upload/controller/UploadController.class] -2024-09-20 17:47:13.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.152 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.152 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/paper/service/impl/PaperQuServiceImpl.class] -2024-09-20 17:47:13.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7e5c72a8) -2024-09-20 17:47:13.153 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/paper/service/impl/PaperServiceImpl.class] -2024-09-20 17:47:13.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.154 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.154 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'userTable' -2024-09-20 17:47:13.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=userTable) -2024-09-20 17:47:13.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The table that holds user data' -2024-09-20 17:47:13.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The table that holds user data) -2024-09-20 17:47:13.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.156 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@27e55937) -2024-09-20 17:47:13.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.158 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.158 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - ' -2024-09-20 17:47:13.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@66779a7a) -2024-09-20 17:47:13.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.161 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.162 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createHttpConnector' -2024-09-20 17:47:13.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createHttpConnector) -2024-09-20 17:47:13.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new HttpConnector' -2024-09-20 17:47:13.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new HttpConnector) -2024-09-20 17:47:13.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.164 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.164 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.168 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@47256233) -2024-09-20 17:47:13.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.170 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.170 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'address' -2024-09-20 17:47:13.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=address) -2024-09-20 17:47:13.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The IP address on which to bind' -2024-09-20 17:47:13.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The IP address on which to bind) -2024-09-20 17:47:13.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.172 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5af1814d) -2024-09-20 17:47:13.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.175 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.175 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'port' -2024-09-20 17:47:13.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=port) -2024-09-20 17:47:13.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'TCP port number to listen on' -2024-09-20 17:47:13.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=TCP port number to listen on) -2024-09-20 17:47:13.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int' -2024-09-20 17:47:13.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int) -2024-09-20 17:47:13.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.178 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@626075a8) -2024-09-20 17:47:13.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.180 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.180 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:13.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1aae9430) -2024-09-20 17:47:13.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.182 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.182 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createHttpsConnector' -2024-09-20 17:47:13.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createHttpsConnector) -2024-09-20 17:47:13.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new HttpsConnector' -2024-09-20 17:47:13.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new HttpsConnector) -2024-09-20 17:47:13.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.187 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.187 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.190 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4869f662) -2024-09-20 17:47:13.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.192 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.192 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'address' -2024-09-20 17:47:13.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=address) -2024-09-20 17:47:13.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The IP address on which to bind' -2024-09-20 17:47:13.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The IP address on which to bind) -2024-09-20 17:47:13.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.194 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@24c9193c) -2024-09-20 17:47:13.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.197 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.197 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'port' -2024-09-20 17:47:13.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=port) -2024-09-20 17:47:13.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'TCP port number to listen on' -2024-09-20 17:47:13.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=TCP port number to listen on) -2024-09-20 17:47:13.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int' -2024-09-20 17:47:13.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int) -2024-09-20 17:47:13.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.200 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2a93d211) -2024-09-20 17:47:13.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.204 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.204 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:13.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2d2b0e1f) -2024-09-20 17:47:13.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.206 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.207 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createJDBCRealm' -2024-09-20 17:47:13.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createJDBCRealm) -2024-09-20 17:47:13.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new JDBC Realm' -2024-09-20 17:47:13.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new JDBC Realm) -2024-09-20 17:47:13.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.209 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.209 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.210 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger2-2.9.2.jar!/springfox/documentation/swagger2/mappers/ServiceModelToSwagger2MapperImpl.class] -2024-09-20 17:47:13.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.211 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger2-2.9.2.jar!/springfox/documentation/swagger2/mappers/VendorExtensionsMapperImpl.class] -2024-09-20 17:47:13.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@199c42f1) -2024-09-20 17:47:13.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.214 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger2-2.9.2.jar!/springfox/documentation/swagger2/mappers/ParameterMapperImpl.class] -2024-09-20 17:47:13.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.215 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.215 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.215 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger2-2.9.2.jar!/springfox/documentation/swagger2/mappers/ModelMapperImpl.class] -2024-09-20 17:47:13.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.216 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger2-2.9.2.jar!/springfox/documentation/swagger2/mappers/LicenseMapperImpl.class] -2024-09-20 17:47:13.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4be4d3ff) -2024-09-20 17:47:13.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.217 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.218 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.220 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger2-2.9.2.jar!/springfox/documentation/swagger2/mappers/SecurityMapperImpl.class] -2024-09-20 17:47:13.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createJNDIRealm' -2024-09-20 17:47:13.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createJNDIRealm) -2024-09-20 17:47:13.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new JNDI Realm' -2024-09-20 17:47:13.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new JNDI Realm) -2024-09-20 17:47:13.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.228 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.228 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.232 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@75f2f2f8) -2024-09-20 17:47:13.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.234 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.234 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5c41af) -2024-09-20 17:47:13.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.238 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.238 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createMemoryRealm' -2024-09-20 17:47:13.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createMemoryRealm) -2024-09-20 17:47:13.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new Memory Realm' -2024-09-20 17:47:13.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new Memory Realm) -2024-09-20 17:47:13.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.241 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.242 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.246 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.247 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/ApiListingReferenceScanner.class] -2024-09-20 17:47:13.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7b2c009f) -2024-09-20 17:47:13.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.248 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/ApiDocumentationScanner.class] -2024-09-20 17:47:13.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.248 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/ApiDescriptionReader.class] -2024-09-20 17:47:13.248 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.248 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.248 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/ApiListingReader.class] -2024-09-20 17:47:13.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.249 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/CachingOperationReader.class] -2024-09-20 17:47:13.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@163a4f2e) -2024-09-20 17:47:13.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.249 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/MediaTypeReader.class] -2024-09-20 17:47:13.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.250 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.250 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/ApiListingScanner.class] -2024-09-20 17:47:13.250 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.250 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/ApiModelReader.class] -2024-09-20 17:47:13.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createUserDatabaseRealm' -2024-09-20 17:47:13.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createUserDatabaseRealm) -2024-09-20 17:47:13.253 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/scanners/ApiDescriptionLookup.class] -2024-09-20 17:47:13.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new UserDatabaseRealm' -2024-09-20 17:47:13.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new UserDatabaseRealm) -2024-09-20 17:47:13.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.254 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.255 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.257 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/OperationModelsProvider.class] -2024-09-20 17:47:13.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.257 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.257 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/OperationDeprecatedReader.class] -2024-09-20 17:47:13.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.258 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/ResponseMessagesReader.class] -2024-09-20 17:47:13.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@743d0a23) -2024-09-20 17:47:13.258 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterReader.class] -2024-09-20 17:47:13.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.259 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/DefaultTagsProvider.class] -2024-09-20 17:47:13.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.259 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.259 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.259 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/OperationTagsReader.class] -2024-09-20 17:47:13.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'resourceName' -2024-09-20 17:47:13.261 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/ApiOperationReader.class] -2024-09-20 17:47:13.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=resourceName) -2024-09-20 17:47:13.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Global JNDI resource name of the associated' -2024-09-20 17:47:13.261 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/DefaultOperationReader.class] -2024-09-20 17:47:13.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Global JNDI resource name of the associated) -2024-09-20 17:47:13.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.262 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterRequestConditionReader.class] -2024-09-20 17:47:13.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.262 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.262 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/OperationParameterHeadersConditionReader.class] -2024-09-20 17:47:13.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.264 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/OperationResponseClassReader.class] -2024-09-20 17:47:13.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.264 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/operation/CachingOperationNameGenerator.class] -2024-09-20 17:47:13.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@168e7c32) -2024-09-20 17:47:13.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.265 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.265 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:13.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@d3dae84) -2024-09-20 17:47:13.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.267 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/parameter/ParameterMultiplesReader.class] -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createStandardContext' -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createStandardContext) -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new StandardContext' -2024-09-20 17:47:13.267 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/parameter/ModelAttributeParameterExpander.class] -2024-09-20 17:47:13.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new StandardContext) -2024-09-20 17:47:13.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.270 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/parameter/ParameterTypeReader.class] -2024-09-20 17:47:13.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.270 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/parameter/ParameterRequiredReader.class] -2024-09-20 17:47:13.270 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.270 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.271 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/parameter/ParameterDataTypeReader.class] -2024-09-20 17:47:13.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.271 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/parameter/ParameterDefaultReader.class] -2024-09-20 17:47:13.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.272 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/parameter/ParameterNameReader.class] -2024-09-20 17:47:13.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.272 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/readers/parameter/ExpandedParameterBuilder.class] -2024-09-20 17:47:13.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.272 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@493ac332) -2024-09-20 17:47:13.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.274 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.275 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'path' -2024-09-20 17:47:13.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=path) -2024-09-20 17:47:13.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The context path for this Context' -2024-09-20 17:47:13.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The context path for this Context) -2024-09-20 17:47:13.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.278 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.278 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/plugins/DocumentationPluginsBootstrapper.class] -2024-09-20 17:47:13.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@554aa424) -2024-09-20 17:47:13.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.279 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/plugins/WebMvcRequestHandlerProvider.class] -2024-09-20 17:47:13.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.280 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/plugins/DocumentationPluginsManager.class] -2024-09-20 17:47:13.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.280 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.280 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'docBase' -2024-09-20 17:47:13.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=docBase) -2024-09-20 17:47:13.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Document base directory (or WAR) for this Context' -2024-09-20 17:47:13.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Document base directory (or WAR) for this Context) -2024-09-20 17:47:13.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.282 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.283 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/paths/QueryStringUriTemplateDecorator.class] -2024-09-20 17:47:13.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@30403d53) -2024-09-20 17:47:13.283 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/paths/PathMappingDecorator.class] -2024-09-20 17:47:13.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.284 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/paths/PathSanitizer.class] -2024-09-20 17:47:13.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.284 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-spring-web-2.9.2.jar!/springfox/documentation/spring/web/paths/OperationPathDecorator.class] -2024-09-20 17:47:13.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:13.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5069ec51) -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.286 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createStandardServiceEngine' -2024-09-20 17:47:13.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createStandardServiceEngine) -2024-09-20 17:47:13.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new StandardService and StandardEngine' -2024-09-20 17:47:13.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new StandardService and StandardEngine) -2024-09-20 17:47:13.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.290 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.290 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'domain' -2024-09-20 17:47:13.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=domain) -2024-09-20 17:47:13.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Domain used for MBeans associated with the new Service' -2024-09-20 17:47:13.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Domain used for MBeans associated with the new Service) -2024-09-20 17:47:13.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.294 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4f55863d) -2024-09-20 17:47:13.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.296 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.296 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'defaultHost' -2024-09-20 17:47:13.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=defaultHost) -2024-09-20 17:47:13.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Default host name for the new Engine' -2024-09-20 17:47:13.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Default host name for the new Engine) -2024-09-20 17:47:13.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.299 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4fbe7077) -2024-09-20 17:47:13.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.305 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.305 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'baseDir' -2024-09-20 17:47:13.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=baseDir) -2024-09-20 17:47:13.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Base directory value for the new Engine' -2024-09-20 17:47:13.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Base directory value for the new Engine) -2024-09-20 17:47:13.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.313 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7ea57676) -2024-09-20 17:47:13.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.316 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.316 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:13.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@61310697) -2024-09-20 17:47:13.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.318 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.319 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createStandardHost' -2024-09-20 17:47:13.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createStandardHost) -2024-09-20 17:47:13.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new StandardHost' -2024-09-20 17:47:13.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new StandardHost) -2024-09-20 17:47:13.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.322 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.322 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.325 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@23600e2) -2024-09-20 17:47:13.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.327 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.327 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Unique name of this Host' -2024-09-20 17:47:13.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Unique name of this Host) -2024-09-20 17:47:13.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.330 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3eb7f51b) -2024-09-20 17:47:13.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.333 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.333 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/CachingModelDependencyProvider.class] -2024-09-20 17:47:13.333 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.334 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/TypeNameExtractor.class] -2024-09-20 17:47:13.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.334 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/plugins/PropertyDiscriminatorBasedInheritancePlugin.class] -2024-09-20 17:47:13.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'appBase' -2024-09-20 17:47:13.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=appBase) -2024-09-20 17:47:13.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'set host deployment directory' -2024-09-20 17:47:13.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=set host deployment directory) -2024-09-20 17:47:13.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.336 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.337 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/plugins/SchemaPluginsManager.class] -2024-09-20 17:47:13.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6b74327d) -2024-09-20 17:47:13.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.338 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/property/CachingModelPropertiesProvider.class] -2024-09-20 17:47:13.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.338 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/property/ObjectMapperBeanPropertyNamingStrategy.class] -2024-09-20 17:47:13.339 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.339 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.339 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/property/bean/AccessorsProvider.class] -2024-09-20 17:47:13.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'autoDeploy' -2024-09-20 17:47:13.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=autoDeploy) -2024-09-20 17:47:13.340 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/property/field/FieldProvider.class] -2024-09-20 17:47:13.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The auto deploy flag for this Host' -2024-09-20 17:47:13.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The auto deploy flag for this Host) -2024-09-20 17:47:13.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean) -2024-09-20 17:47:13.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.341 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@298843a) -2024-09-20 17:47:13.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.342 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/property/OptimizedModelPropertiesProvider.class] -2024-09-20 17:47:13.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.344 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/property/FactoryMethodProvider.class] -2024-09-20 17:47:13.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.346 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.346 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.348 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/CachingModelProvider.class] -2024-09-20 17:47:13.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.349 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/DefaultModelDependencyProvider.class] -2024-09-20 17:47:13.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.349 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/JacksonEnumTypeDeterminer.class] -2024-09-20 17:47:13.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'deployOnStartup' -2024-09-20 17:47:13.351 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-schema-2.9.2.jar!/springfox/documentation/schema/DefaultModelProvider.class] -2024-09-20 17:47:13.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=deployOnStartup) -2024-09-20 17:47:13.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The deploy on startup flag for this Host' -2024-09-20 17:47:13.369 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/schema/ApiModelPropertyPropertyBuilder.class] -2024-09-20 17:47:13.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The deploy on startup flag for this Host) -2024-09-20 17:47:13.370 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/schema/ApiModelTypeNameProvider.class] -2024-09-20 17:47:13.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.372 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/schema/ApiModelBuilder.class] -2024-09-20 17:47:13.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean) -2024-09-20 17:47:13.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.372 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@301bb59b) -2024-09-20 17:47:13.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.376 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.377 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.378 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationImplicitParameterReader.class] -2024-09-20 17:47:13.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.379 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/VendorExtensionsReader.class] -2024-09-20 17:47:13.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'deployXML' -2024-09-20 17:47:13.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=deployXML) -2024-09-20 17:47:13.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'deploy Context XML config files property' -2024-09-20 17:47:13.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=deploy Context XML config files property) -2024-09-20 17:47:13.379 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationResponseClassReader.class] -2024-09-20 17:47:13.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean) -2024-09-20 17:47:13.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.380 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationModelsProvider.class] -2024-09-20 17:47:13.380 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.380 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/SwaggerMediaTypeReader.class] -2024-09-20 17:47:13.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.381 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationHttpMethodReader.class] -2024-09-20 17:47:13.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@310581ae) -2024-09-20 17:47:13.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.382 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationImplicitParametersReader.class] -2024-09-20 17:47:13.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.382 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationAuthReader.class] -2024-09-20 17:47:13.383 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.383 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationHiddenReader.class] -2024-09-20 17:47:13.383 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.383 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationSummaryReader.class] -2024-09-20 17:47:13.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.384 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/SwaggerResponseMessageReader.class] -2024-09-20 17:47:13.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'unpackWARs' -2024-09-20 17:47:13.384 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationNicknameIntoUniqueIdReader.class] -2024-09-20 17:47:13.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=unpackWARs) -2024-09-20 17:47:13.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Unpack WARs property' -2024-09-20 17:47:13.384 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationPositionReader.class] -2024-09-20 17:47:13.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Unpack WARs property) -2024-09-20 17:47:13.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.385 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/OperationNotesReader.class] -2024-09-20 17:47:13.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean) -2024-09-20 17:47:13.385 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/operation/SwaggerOperationTagsReader.class] -2024-09-20 17:47:13.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.386 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/parameter/ApiParamParameterBuilder.class] -2024-09-20 17:47:13.387 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.387 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/readers/parameter/SwaggerExpandedParameterBuilder.class] -2024-09-20 17:47:13.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7b28ba29) -2024-09-20 17:47:13.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.388 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.389 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - ' -2024-09-20 17:47:13.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3dd74822) -2024-09-20 17:47:13.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.392 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:13.392 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createStandardManager' -2024-09-20 17:47:13.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createStandardManager) -2024-09-20 17:47:13.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new StandardManager' -2024-09-20 17:47:13.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new StandardManager) -2024-09-20 17:47:13.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.396 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.396 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.397 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/web/SwaggerApiListingReader.class] -2024-09-20 17:47:13.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.398 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.399 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/web/ClassOrApiAnnotationResourceGrouping.class] -2024-09-20 17:47:13.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.399 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/web/InMemorySwaggerResourcesProvider.class] -2024-09-20 17:47:13.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@508d856e) -2024-09-20 17:47:13.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.401 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.401 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.401 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/springfox-swagger-common-2.9.2.jar!/springfox/documentation/swagger/web/ApiResourceController.class] -2024-09-20 17:47:13.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4d987620) -2024-09-20 17:47:13.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.406 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.406 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createUserDatabaseRealm' -2024-09-20 17:47:13.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createUserDatabaseRealm) -2024-09-20 17:47:13.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new UserDatabase Realm' -2024-09-20 17:47:13.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new UserDatabase Realm) -2024-09-20 17:47:13.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.409 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.409 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@73df7448) -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.414 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.414 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'resourceName' -2024-09-20 17:47:13.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=resourceName) -2024-09-20 17:47:13.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Global JNDI resource name of our UserDatabase instance' -2024-09-20 17:47:13.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Global JNDI resource name of our UserDatabase instance) -2024-09-20 17:47:13.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@744ea449) -2024-09-20 17:47:13.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.417 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.417 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:13.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@48d4e95b) -2024-09-20 17:47:13.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.420 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.420 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createValve' -2024-09-20 17:47:13.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createValve) -2024-09-20 17:47:13.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new Valve for the given Container' -2024-09-20 17:47:13.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new Valve for the given Container) -2024-09-20 17:47:13.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.422 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.423 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'className' -2024-09-20 17:47:13.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=className) -2024-09-20 17:47:13.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Fully qualified class name of the Valve to create' -2024-09-20 17:47:13.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Fully qualified class name of the Valve to create) -2024-09-20 17:47:13.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.426 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4673af17) -2024-09-20 17:47:13.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.428 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.428 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.429 DEBUG 22604 --- [main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/swagger-bootstrap-ui-1.9.3.jar!/com/github/xiaoymin/swaggerbootstrapui/web/SwaggerBootstrapUiController.class] -2024-09-20 17:47:13.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.430 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4e06eea5) -2024-09-20 17:47:13.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.432 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.432 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:13.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4feb67c0) -2024-09-20 17:47:13.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.434 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.435 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createWebappLoader' -2024-09-20 17:47:13.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createWebappLoader) -2024-09-20 17:47:13.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create a new Web Application Loader' -2024-09-20 17:47:13.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create a new Web Application Loader) -2024-09-20 17:47:13.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:13.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:13.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.437 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.438 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'parent' -2024-09-20 17:47:13.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=parent) -2024-09-20 17:47:13.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the associated parent component' -2024-09-20 17:47:13.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the associated parent component) -2024-09-20 17:47:13.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.440 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@201ad157) -2024-09-20 17:47:13.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.441 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7bcad954) -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.444 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.444 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.444 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.444 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.444 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.445 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeConnector' -2024-09-20 17:47:13.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeConnector) -2024-09-20 17:47:13.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Connector' -2024-09-20 17:47:13.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Connector) -2024-09-20 17:47:13.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:13.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:13.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.448 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.448 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed' -2024-09-20 17:47:13.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed) -2024-09-20 17:47:13.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.452 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@d69beed) -2024-09-20 17:47:13.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.455 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.455 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1247b191) -2024-09-20 17:47:13.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.458 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.458 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeContext' -2024-09-20 17:47:13.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeContext) -2024-09-20 17:47:13.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Context' -2024-09-20 17:47:13.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Context) -2024-09-20 17:47:13.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:13.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:13.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.461 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.461 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed' -2024-09-20 17:47:13.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed) -2024-09-20 17:47:13.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.464 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@68d49f48) -2024-09-20 17:47:13.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.466 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.466 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@473070fa) -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.468 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.468 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeHost' -2024-09-20 17:47:13.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeHost) -2024-09-20 17:47:13.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Host' -2024-09-20 17:47:13.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Host) -2024-09-20 17:47:13.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:13.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:13.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.470 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.471 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed' -2024-09-20 17:47:13.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed) -2024-09-20 17:47:13.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.473 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@41d06f71) -2024-09-20 17:47:13.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.475 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.475 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3fb7aceb) -2024-09-20 17:47:13.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.477 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.478 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeLoader' -2024-09-20 17:47:13.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeLoader) -2024-09-20 17:47:13.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Loader' -2024-09-20 17:47:13.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Loader) -2024-09-20 17:47:13.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:13.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:13.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.482 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.482 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed' -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed) -2024-09-20 17:47:13.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.485 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@73d54a8a) -2024-09-20 17:47:13.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.487 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.487 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@372643aa) -2024-09-20 17:47:13.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.489 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.489 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeManager' -2024-09-20 17:47:13.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeManager) -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Manager' -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Manager) -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed' -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed) -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@75cf19d8) -2024-09-20 17:47:13.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.496 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.496 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@771d237e) -2024-09-20 17:47:13.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.498 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.498 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeRealm' -2024-09-20 17:47:13.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeRealm) -2024-09-20 17:47:13.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Realm' -2024-09-20 17:47:13.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Realm) -2024-09-20 17:47:13.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:13.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:13.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.501 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.501 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed' -2024-09-20 17:47:13.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed) -2024-09-20 17:47:13.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.503 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2ec5a60d) -2024-09-20 17:47:13.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.505 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.505 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2b7b9b6c) -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.506 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.508 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeService' -2024-09-20 17:47:13.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeService) -2024-09-20 17:47:13.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Service' -2024-09-20 17:47:13.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Service) -2024-09-20 17:47:13.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:13.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:13.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.510 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.510 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed' -2024-09-20 17:47:13.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed) -2024-09-20 17:47:13.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.512 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@26f74602) -2024-09-20 17:47:13.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@38ef8771) -2024-09-20 17:47:13.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.518 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.518 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:13.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:13.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeValve' -2024-09-20 17:47:13.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeValve) -2024-09-20 17:47:13.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an existing Valve' -2024-09-20 17:47:13.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an existing Valve) -2024-09-20 17:47:13.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:13.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:13.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:13.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:13.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.521 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.521 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:13.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:13.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:13.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:13.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'MBean Name of the component to be removed' -2024-09-20 17:47:13.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=MBean Name of the component to be removed) -2024-09-20 17:47:13.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:13.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.524 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:13.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:13.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3b99abaf) -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:13.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.526 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:13.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:13.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:13.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:13.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4ccef74b) -2024-09-20 17:47:13.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:13.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:13.529 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.529 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:13.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:13.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=MBeanFactory, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Factory for MBeans and corresponding components, type=org.apache.catalina.mbeans.MBeanFactory]) -2024-09-20 17:47:13.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:13.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.532 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:13.532 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:13.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:13.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - -' -2024-09-20 17:47:13.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:13.533 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:13.534 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/authenticator/mbeans-descriptors.xml -2024-09-20 17:47:13.534 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@79513420) -2024-09-20 17:47:13.534 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:13.535 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:13.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:13.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:13.536 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.536 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:13.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:13.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'BasicAuthenticator' -2024-09-20 17:47:13.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=BasicAuthenticator) -2024-09-20 17:47:13.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation of HTTP BASIC Authentication' -2024-09-20 17:47:13.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation of HTTP BASIC Authentication) -2024-09-20 17:47:13.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:13.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:13.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:13.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:13.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.BasicAuthenticator' -2024-09-20 17:47:13.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.BasicAuthenticator) -2024-09-20 17:47:13.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.539 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.539 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'alwaysUseSession' -2024-09-20 17:47:13.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=alwaysUseSession) -2024-09-20 17:47:13.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should a session always be used once a user is authenticated?' -2024-09-20 17:47:13.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should a session always be used once a user is authenticated?) -2024-09-20 17:47:13.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.542 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2182d411) -2024-09-20 17:47:13.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.544 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.544 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cache' -2024-09-20 17:47:13.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cache) -2024-09-20 17:47:13.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we cache authenticated Principals if the request is part of an HTTP session?' -2024-09-20 17:47:13.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we cache authenticated Principals if the request is part of an HTTP session?) -2024-09-20 17:47:13.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.547 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@263b8a92) -2024-09-20 17:47:13.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.556 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.556 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication' -2024-09-20 17:47:13.559 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication) -2024-09-20 17:47:13.559 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated' -2024-09-20 17:47:13.559 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated) -2024-09-20 17:47:13.559 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.560 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@13aef38d) -2024-09-20 17:47:13.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.563 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.563 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.563 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:13.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:13.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:13.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:13.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.566 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4200a120) -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.568 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.568 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching' -2024-09-20 17:47:13.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching) -2024-09-20 17:47:13.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.571 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7515c72d) -2024-09-20 17:47:13.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.572 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.573 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.573 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.573 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.573 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma' -2024-09-20 17:47:13.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma) -2024-09-20 17:47:13.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.575 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@f00ac07) -2024-09-20 17:47:13.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.578 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.578 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm' -2024-09-20 17:47:13.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm) -2024-09-20 17:47:13.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the algorithm to use for SSO session ID generation' -2024-09-20 17:47:13.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the algorithm to use for SSO session ID generation) -2024-09-20 17:47:13.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.580 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6bd614f1) -2024-09-20 17:47:13.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.581 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.582 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass' -2024-09-20 17:47:13.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass) -2024-09-20 17:47:13.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the class to use for SSO session ID generation' -2024-09-20 17:47:13.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the class to use for SSO session ID generation) -2024-09-20 17:47:13.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.584 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2c18b10a) -2024-09-20 17:47:13.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.586 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.586 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider' -2024-09-20 17:47:13.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider) -2024-09-20 17:47:13.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the provider to use for SSO session ID generation' -2024-09-20 17:47:13.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the provider to use for SSO session ID generation) -2024-09-20 17:47:13.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.589 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@776f270b) -2024-09-20 17:47:13.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.590 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.591 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:13.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:13.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:13.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:13.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.593 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7d85cd75) -2024-09-20 17:47:13.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.595 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.595 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'trimCredentials' -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=trimCredentials) -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls whether leading and/or trailing whitespace is removed from the parsed credentials' -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls whether leading and/or trailing whitespace is removed from the parsed credentials) -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.596 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@262f2fa8) -2024-09-20 17:47:13.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.599 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.599 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:13.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:13.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=BasicAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation of HTTP BASIC Authentication, group=Valve, type=org.apache.catalina.authenticator.BasicAuthenticator]) -2024-09-20 17:47:13.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:13.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.601 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:13.601 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:13.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:13.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'DigestAuthenticator' -2024-09-20 17:47:13.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=DigestAuthenticator) -2024-09-20 17:47:13.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation of HTTP DIGEST Authentication' -2024-09-20 17:47:13.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation of HTTP DIGEST Authentication) -2024-09-20 17:47:13.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:13.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:13.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:13.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:13.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.DigestAuthenticator' -2024-09-20 17:47:13.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.DigestAuthenticator) -2024-09-20 17:47:13.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.605 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.605 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'alwaysUseSession' -2024-09-20 17:47:13.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=alwaysUseSession) -2024-09-20 17:47:13.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should a session always be used once a user is authenticated?' -2024-09-20 17:47:13.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should a session always be used once a user is authenticated?) -2024-09-20 17:47:13.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.607 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4fd64a86) -2024-09-20 17:47:13.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.612 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.612 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cache' -2024-09-20 17:47:13.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cache) -2024-09-20 17:47:13.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we cache authenticated Principals if the request is part of an HTTP session?' -2024-09-20 17:47:13.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we cache authenticated Principals if the request is part of an HTTP session?) -2024-09-20 17:47:13.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.615 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@410f7b08) -2024-09-20 17:47:13.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.621 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.621 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication' -2024-09-20 17:47:13.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication) -2024-09-20 17:47:13.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated' -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated) -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@12b2f839) -2024-09-20 17:47:13.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.626 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.626 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:13.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:13.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:13.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:13.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.629 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4d3fc7a8) -2024-09-20 17:47:13.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.631 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.631 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cnonceCacheSize' -2024-09-20 17:47:13.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cnonceCacheSize) -2024-09-20 17:47:13.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The size of the cnonce cache used to prevent replay attacks' -2024-09-20 17:47:13.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The size of the cnonce cache used to prevent replay attacks) -2024-09-20 17:47:13.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:13.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:13.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.634 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@fdb8e94) -2024-09-20 17:47:13.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.637 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.638 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching' -2024-09-20 17:47:13.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching) -2024-09-20 17:47:13.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.642 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@698382e1) -2024-09-20 17:47:13.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.646 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.646 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'key' -2024-09-20 17:47:13.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=key) -2024-09-20 17:47:13.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The secret key used by digest authentication' -2024-09-20 17:47:13.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The secret key used by digest authentication) -2024-09-20 17:47:13.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.649 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3aff0e6b) -2024-09-20 17:47:13.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.654 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.654 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'nonceValidity' -2024-09-20 17:47:13.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=nonceValidity) -2024-09-20 17:47:13.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The time, in milliseconds, for which a server issued nonce will be valid' -2024-09-20 17:47:13.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The time, in milliseconds, for which a server issued nonce will be valid) -2024-09-20 17:47:13.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:13.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:13.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.657 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@562bab7e) -2024-09-20 17:47:13.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.661 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.661 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'opaque' -2024-09-20 17:47:13.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=opaque) -2024-09-20 17:47:13.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The opaque server string used by digest authentication' -2024-09-20 17:47:13.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The opaque server string used by digest authentication) -2024-09-20 17:47:13.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.664 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.667 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.667 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.667 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@394cfdef) -2024-09-20 17:47:13.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.669 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.670 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.671 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma' -2024-09-20 17:47:13.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma) -2024-09-20 17:47:13.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.675 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4cade4ad) -2024-09-20 17:47:13.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.678 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.678 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.679 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.679 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.679 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.679 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm' -2024-09-20 17:47:13.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm) -2024-09-20 17:47:13.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the algorithm to use for SSO session ID generation' -2024-09-20 17:47:13.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the algorithm to use for SSO session ID generation) -2024-09-20 17:47:13.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.682 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@e633705) -2024-09-20 17:47:13.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.684 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.685 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass' -2024-09-20 17:47:13.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass) -2024-09-20 17:47:13.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the class to use for SSO session ID generation' -2024-09-20 17:47:13.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the class to use for SSO session ID generation) -2024-09-20 17:47:13.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.688 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5981dec) -2024-09-20 17:47:13.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.690 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.690 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider' -2024-09-20 17:47:13.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider) -2024-09-20 17:47:13.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the provider to use for SSO session ID generation' -2024-09-20 17:47:13.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the provider to use for SSO session ID generation) -2024-09-20 17:47:13.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.692 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5b652b35) -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.694 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:13.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:13.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.696 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@78ce3478) -2024-09-20 17:47:13.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.698 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.698 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validateUri' -2024-09-20 17:47:13.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validateUri) -2024-09-20 17:47:13.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the uri be validated as required by RFC2617?' -2024-09-20 17:47:13.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the uri be validated as required by RFC2617?) -2024-09-20 17:47:13.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.701 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6f02ef7b) -2024-09-20 17:47:13.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.704 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.704 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:13.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:13.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=DigestAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation of HTTP DIGEST Authentication, group=Valve, type=org.apache.catalina.authenticator.DigestAuthenticator]) -2024-09-20 17:47:13.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:13.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.706 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.706 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:13.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:13.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'FormAuthenticator' -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=FormAuthenticator) -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation of FORM BASED Authentication' -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation of FORM BASED Authentication) -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.FormAuthenticator' -2024-09-20 17:47:13.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.FormAuthenticator) -2024-09-20 17:47:13.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.708 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.708 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication' -2024-09-20 17:47:13.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication) -2024-09-20 17:47:13.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated' -2024-09-20 17:47:13.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated) -2024-09-20 17:47:13.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.712 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2a30f80a) -2024-09-20 17:47:13.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.713 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.714 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'characterEncoding' -2024-09-20 17:47:13.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=characterEncoding) -2024-09-20 17:47:13.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Character encoding to use to read the username and password parameters from the request' -2024-09-20 17:47:13.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Character encoding to use to read the username and password parameters from the request) -2024-09-20 17:47:13.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.716 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@58fe52fa) -2024-09-20 17:47:13.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.720 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.720 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:13.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:13.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:13.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:13.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.723 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@511ac069) -2024-09-20 17:47:13.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.725 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.725 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching' -2024-09-20 17:47:13.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching) -2024-09-20 17:47:13.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.732 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@299b9406) -2024-09-20 17:47:13.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.737 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.738 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'landingPage' -2024-09-20 17:47:13.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=landingPage) -2024-09-20 17:47:13.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the behavior of the FORM authentication process if the process is misused, for example by directly requesting the login page or delaying logging in for so long that the session expires' -2024-09-20 17:47:13.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the behavior of the FORM authentication process if the process is misused, for example by directly requesting the login page or delaying logging in for so long that the session expires) -2024-09-20 17:47:13.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.740 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@446c997) -2024-09-20 17:47:13.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.746 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.747 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma' -2024-09-20 17:47:13.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma) -2024-09-20 17:47:13.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.751 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.753 DEBUG 22604 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.datasource.type' in PropertySource 'configurationProperties' with value of type String -2024-09-20 17:47:13.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2e852267) -2024-09-20 17:47:13.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.755 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.755 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.762 DEBUG 22604 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.datasource.type' in PropertySource 'configurationProperties' with value of type String -2024-09-20 17:47:13.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm' -2024-09-20 17:47:13.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm) -2024-09-20 17:47:13.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the algorithm to use for SSO session ID generation' -2024-09-20 17:47:13.765 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the algorithm to use for SSO session ID generation) -2024-09-20 17:47:13.765 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.765 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.765 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.765 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.765 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.766 DEBUG 22604 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.datasource.type' in PropertySource 'configurationProperties' with value of type String -2024-09-20 17:47:13.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@299ba656) -2024-09-20 17:47:13.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.770 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.770 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.770 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass' -2024-09-20 17:47:13.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass) -2024-09-20 17:47:13.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the class to use for SSO session ID generation' -2024-09-20 17:47:13.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the class to use for SSO session ID generation) -2024-09-20 17:47:13.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.774 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.775 DEBUG 22604 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.datasource.type' in PropertySource 'configurationProperties' with value of type String -2024-09-20 17:47:13.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5c552cc7) -2024-09-20 17:47:13.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.776 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.776 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider' -2024-09-20 17:47:13.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider) -2024-09-20 17:47:13.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the provider to use for SSO session ID generation' -2024-09-20 17:47:13.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the provider to use for SSO session ID generation) -2024-09-20 17:47:13.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.779 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6e6d5cab) -2024-09-20 17:47:13.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.781 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.781 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.785 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@697cdd1b) -2024-09-20 17:47:13.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.787 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.787 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:13.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:13.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=FormAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation of FORM BASED Authentication, group=Valve, type=org.apache.catalina.authenticator.FormAuthenticator]) -2024-09-20 17:47:13.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:13.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.789 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.789 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:13.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:13.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'NonLoginAuthenticator' -2024-09-20 17:47:13.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=NonLoginAuthenticator) -2024-09-20 17:47:13.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation that checks only security constraints not involving user authentication' -2024-09-20 17:47:13.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation that checks only security constraints not involving user authentication) -2024-09-20 17:47:13.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:13.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:13.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.NonLoginAuthenticator' -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.NonLoginAuthenticator) -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cache' -2024-09-20 17:47:13.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cache) -2024-09-20 17:47:13.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we cache authenticated Principals if the request is part of an HTTP session?' -2024-09-20 17:47:13.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we cache authenticated Principals if the request is part of an HTTP session?) -2024-09-20 17:47:13.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.795 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1da17f74) -2024-09-20 17:47:13.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.800 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.800 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication' -2024-09-20 17:47:13.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication) -2024-09-20 17:47:13.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated' -2024-09-20 17:47:13.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated) -2024-09-20 17:47:13.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.833 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@68674b13) -2024-09-20 17:47:13.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.839 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.840 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:13.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:13.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:13.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:13.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.849 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6cebcab0) -2024-09-20 17:47:13.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.851 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.852 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching' -2024-09-20 17:47:13.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching) -2024-09-20 17:47:13.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.856 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@63705633) -2024-09-20 17:47:13.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.865 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.865 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma' -2024-09-20 17:47:13.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma) -2024-09-20 17:47:13.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.868 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@75bcdff6) -2024-09-20 17:47:13.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.872 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.872 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:13.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:13.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:13.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:13.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.875 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@27d12d81) -2024-09-20 17:47:13.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.877 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.877 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:13.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - ' -2024-09-20 17:47:13.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=NonLoginAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation that checks only security constraints not involving user authentication, group=Valve, type=org.apache.catalina.authenticator.NonLoginAuthenticator]) -2024-09-20 17:47:13.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:13.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.880 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:13.880 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:13.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:13.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'SingleSignOn' -2024-09-20 17:47:13.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=SingleSignOn) -2024-09-20 17:47:13.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'A Valve that supports a 'single signon' user experience' -2024-09-20 17:47:13.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=A Valve that supports a 'single signon' user experience) -2024-09-20 17:47:13.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:13.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:13.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:13.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:13.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.SingleSignOn' -2024-09-20 17:47:13.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.SingleSignOn) -2024-09-20 17:47:13.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.883 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.884 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:13.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:13.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:13.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:13.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.888 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@155dcd81) -2024-09-20 17:47:13.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.891 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.891 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'requireReauthentication' -2024-09-20 17:47:13.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=requireReauthentication) -2024-09-20 17:47:13.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we attempt to reauthenticate each request against the security Realm?' -2024-09-20 17:47:13.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we attempt to reauthenticate each request against the security Realm?) -2024-09-20 17:47:13.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.897 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@747dd0d7) -2024-09-20 17:47:13.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cookieDomain' -2024-09-20 17:47:13.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cookieDomain) -2024-09-20 17:47:13.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to '(Optional) Domain to be used by sso cookies' -2024-09-20 17:47:13.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=(Optional) Domain to be used by sso cookies) -2024-09-20 17:47:13.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.900 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@672df2c1) -2024-09-20 17:47:13.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.903 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.903 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:13.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:13.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:13.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:13.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.907 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.907 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@49be6680) -2024-09-20 17:47:13.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.912 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.912 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:13.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - ' -2024-09-20 17:47:13.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=SingleSignOn, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=A Valve that supports a 'single signon' user experience, group=Valve, type=org.apache.catalina.authenticator.SingleSignOn]) -2024-09-20 17:47:13.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:13.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.914 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:13.914 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:13.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:13.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'SSLAuthenticator' -2024-09-20 17:47:13.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=SSLAuthenticator) -2024-09-20 17:47:13.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'An Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users' -2024-09-20 17:47:13.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=An Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users) -2024-09-20 17:47:13.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:13.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:13.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:13.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:13.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.authenticator.SSLAuthenticator' -2024-09-20 17:47:13.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.authenticator.SSLAuthenticator) -2024-09-20 17:47:13.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.916 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.916 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cache' -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cache) -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we cache authenticated Principals if the request is part of an HTTP session?' -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we cache authenticated Principals if the request is part of an HTTP session?) -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.919 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@32f49bf3) -2024-09-20 17:47:13.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.921 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.922 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'changeSessionIdOnAuthentication' -2024-09-20 17:47:13.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=changeSessionIdOnAuthentication) -2024-09-20 17:47:13.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls if the session ID is changed if a session exists at the point where users are authenticated' -2024-09-20 17:47:13.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls if the session ID is changed if a session exists at the point where users are authenticated) -2024-09-20 17:47:13.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.923 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@28950e12) -2024-09-20 17:47:13.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.925 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.925 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:13.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:13.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:13.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:13.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.929 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@20265a3b) -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.931 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.932 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'disableProxyCaching' -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=disableProxyCaching) -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1a16a2d9) -2024-09-20 17:47:13.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.937 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.937 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'securePagesWithPragma' -2024-09-20 17:47:13.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=securePagesWithPragma) -2024-09-20 17:47:13.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Controls the caching of pages that are protected by security constraints' -2024-09-20 17:47:13.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Controls the caching of pages that are protected by security constraints) -2024-09-20 17:47:13.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:13.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:13.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.941 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@cab896b) -2024-09-20 17:47:13.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.943 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.945 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm' -2024-09-20 17:47:13.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm) -2024-09-20 17:47:13.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the algorithm to use for SSO session ID generation' -2024-09-20 17:47:13.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the algorithm to use for SSO session ID generation) -2024-09-20 17:47:13.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.947 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@c4ee372) -2024-09-20 17:47:13.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.949 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.949 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass' -2024-09-20 17:47:13.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass) -2024-09-20 17:47:13.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the class to use for SSO session ID generation' -2024-09-20 17:47:13.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the class to use for SSO session ID generation) -2024-09-20 17:47:13.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.954 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1e2b8742) -2024-09-20 17:47:13.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.956 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.956 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider' -2024-09-20 17:47:13.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider) -2024-09-20 17:47:13.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the provider to use for SSO session ID generation' -2024-09-20 17:47:13.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the provider to use for SSO session ID generation) -2024-09-20 17:47:13.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.958 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3184ee34) -2024-09-20 17:47:13.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.960 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.961 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:13.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:13.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:13.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:13.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.965 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry' -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@61b4c9be) -2024-09-20 17:47:13.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.966 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:13.966 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:13.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:13.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=SSLAuthenticator, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=An Authenticator and Valve implementation of authentication that utilizes SSL certificates to identify client users, group=Valve, type=org.apache.catalina.authenticator.SSLAuthenticator]) -2024-09-20 17:47:13.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:13.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.970 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:13.971 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:13.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:13.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - -' -2024-09-20 17:47:13.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:13.971 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:13.972 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/core/mbeans-descriptors.xml -2024-09-20 17:47:13.972 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@1a1ae389) -2024-09-20 17:47:13.972 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:13.972 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:13.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:13.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:13.974 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.974 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:13.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:13.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:13.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:13.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:13.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ApplicationFilterConfig' -2024-09-20 17:47:13.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ApplicationFilterConfig) -2024-09-20 17:47:13.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Wrapper that represents an individual servlet-filter definition' -2024-09-20 17:47:13.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Wrapper that represents an individual servlet-filter definition) -2024-09-20 17:47:13.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:13.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:13.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Filter' -2024-09-20 17:47:13.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Filter) -2024-09-20 17:47:13.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.ApplicationFilterConfig' -2024-09-20 17:47:13.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.ApplicationFilterConfig) -2024-09-20 17:47:13.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:13.976 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.977 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'filterName' -2024-09-20 17:47:13.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=filterName) -2024-09-20 17:47:13.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name used to reference the filter in web.xml' -2024-09-20 17:47:13.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name used to reference the filter in web.xml) -2024-09-20 17:47:13.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:13.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:13.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:13.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:13.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.992 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:13.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:13.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:13.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:13.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5849761f) -2024-09-20 17:47:13.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:13.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.995 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:13.995 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:13.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:13.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:13.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:13.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:13.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:13.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'filterClass' -2024-09-20 17:47:13.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=filterClass) -2024-09-20 17:47:13.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the filter object' -2024-09-20 17:47:14.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the filter object) -2024-09-20 17:47:14.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.003 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4e2ad66c) -2024-09-20 17:47:14.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.006 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.006 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'filterInitParameterMap' -2024-09-20 17:47:14.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=filterInitParameterMap) -2024-09-20 17:47:14.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Return the initialization parameters associated with this filter' -2024-09-20 17:47:14.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Return the initialization parameters associated with this filter) -2024-09-20 17:47:14.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.util.Map' -2024-09-20 17:47:14.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.util.Map) -2024-09-20 17:47:14.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.009 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@9141f2e) -2024-09-20 17:47:14.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.012 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.012 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:14.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - ' -2024-09-20 17:47:14.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ApplicationFilterConfig, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Wrapper that represents an individual servlet-filter definition, group=Filter, type=org.apache.catalina.core.ApplicationFilterConfig]) -2024-09-20 17:47:14.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:14.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:14.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'NamingContextListener' -2024-09-20 17:47:14.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=NamingContextListener) -2024-09-20 17:47:14.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Helper class used to initialize and populate the JNDI context associated with each context and server' -2024-09-20 17:47:14.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Helper class used to initialize and populate the JNDI context associated with each context and server) -2024-09-20 17:47:14.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:14.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:14.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Listener' -2024-09-20 17:47:14.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Listener) -2024-09-20 17:47:14.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.NamingContextListener' -2024-09-20 17:47:14.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.NamingContextListener) -2024-09-20 17:47:14.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.016 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.016 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:14.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:14.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:14.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:14.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.020 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4fb4e908) -2024-09-20 17:47:14.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.022 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.022 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name of the associated naming context' -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name of the associated naming context) -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@667062bf) -2024-09-20 17:47:14.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:14.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - ' -2024-09-20 17:47:14.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=NamingContextListener, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Helper class used to initialize and populate the JNDI context associated with each context and server, group=Listener, type=org.apache.catalina.core.NamingContextListener]) -2024-09-20 17:47:14.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:14.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.028 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.028 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:14.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:14.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardContext' -2024-09-20 17:47:14.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardContext) -2024-09-20 17:47:14.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Standard Context Component' -2024-09-20 17:47:14.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Standard Context Component) -2024-09-20 17:47:14.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:14.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:14.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Context' -2024-09-20 17:47:14.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Context) -2024-09-20 17:47:14.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardContext' -2024-09-20 17:47:14.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardContext) -2024-09-20 17:47:14.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ContextMBean' -2024-09-20 17:47:14.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ContextMBean) -2024-09-20 17:47:14.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.031 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.031 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'altDDName' -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=altDDName) -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The alternate deployment descriptor name.' -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The alternate deployment descriptor name.) -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.033 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5f0ffb8c) -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'antiResourceLocking' -2024-09-20 17:47:14.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=antiResourceLocking) -2024-09-20 17:47:14.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Take care to not lock resources' -2024-09-20 17:47:14.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Take care to not lock resources) -2024-09-20 17:47:14.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.037 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@26a2c835) -2024-09-20 17:47:14.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.039 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.039 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'baseName' -2024-09-20 17:47:14.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=baseName) -2024-09-20 17:47:14.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The base name used for directories, WAR files (with .war appended) and context.xml files (with .xml appended).' -2024-09-20 17:47:14.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The base name used for directories, WAR files (with .war appended) and context.xml files (with .xml appended).) -2024-09-20 17:47:14.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4eb68940) -2024-09-20 17:47:14.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.043 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.043 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'children' -2024-09-20 17:47:14.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=children) -2024-09-20 17:47:14.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Object names of all children' -2024-09-20 17:47:14.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Object names of all children) -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljavax.management.ObjectName;' -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljavax.management.ObjectName;) -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2b367fb3) -2024-09-20 17:47:14.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.047 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.048 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'clearReferencesRmiTargets' -2024-09-20 17:47:14.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=clearReferencesRmiTargets) -2024-09-20 17:47:14.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat look for memory leaks in RMI Targets and clear them if found as a work around for application coding errors?' -2024-09-20 17:47:14.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat look for memory leaks in RMI Targets and clear them if found as a work around for application coding errors?) -2024-09-20 17:47:14.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@bc522c2) -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.052 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.052 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'clearReferencesStopThreads' -2024-09-20 17:47:14.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=clearReferencesStopThreads) -2024-09-20 17:47:14.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat attempt to terminate threads that have been started by the web application? Advisable to be used only in a development environment.' -2024-09-20 17:47:14.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat attempt to terminate threads that have been started by the web application? Advisable to be used only in a development environment.) -2024-09-20 17:47:14.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.055 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3b96b0ef) -2024-09-20 17:47:14.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.057 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.057 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'clearReferencesStopTimerThreads' -2024-09-20 17:47:14.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=clearReferencesStopTimerThreads) -2024-09-20 17:47:14.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat attempt to terminate TimerThreads that have been started by the web application? Advisable to be used only in a development environment.' -2024-09-20 17:47:14.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat attempt to terminate TimerThreads that have been started by the web application? Advisable to be used only in a development environment.) -2024-09-20 17:47:14.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4190c254) -2024-09-20 17:47:14.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'clearReferencesThreadLocals' -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=clearReferencesThreadLocals) -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat attempt to clear ThreadLocal variables that have been populated with classes loaded by the web application?' -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat attempt to clear ThreadLocal variables that have been populated with classes loaded by the web application?) -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.062 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5943f632) -2024-09-20 17:47:14.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.064 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.064 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'configFile' -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=configFile) -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Location of the context.xml resource or file' -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Location of the context.xml resource or file) -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.net.URL' -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.net.URL) -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.065 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7b320cea) -2024-09-20 17:47:14.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.068 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.068 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'configured' -2024-09-20 17:47:14.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=configured) -2024-09-20 17:47:14.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The correctly configured flag for this Context.' -2024-09-20 17:47:14.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The correctly configured flag for this Context.) -2024-09-20 17:47:14.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.071 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@75addaab) -2024-09-20 17:47:14.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.072 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.073 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cookies' -2024-09-20 17:47:14.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cookies) -2024-09-20 17:47:14.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we attempt to use cookies for session id communication?' -2024-09-20 17:47:14.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we attempt to use cookies for session id communication?) -2024-09-20 17:47:14.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.074 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@32682428) -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.077 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.078 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'crossContext' -2024-09-20 17:47:14.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=crossContext) -2024-09-20 17:47:14.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we allow the ServletContext.getContext() method to access the context of other web applications in this server?' -2024-09-20 17:47:14.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we allow the ServletContext.getContext() method to access the context of other web applications in this server?) -2024-09-20 17:47:14.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.080 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@745ca631) -2024-09-20 17:47:14.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultContextXml' -2024-09-20 17:47:14.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultContextXml) -2024-09-20 17:47:14.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Location of the default context.xml resource or file' -2024-09-20 17:47:14.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Location of the default context.xml resource or file) -2024-09-20 17:47:14.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.085 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1fe2a10c) -2024-09-20 17:47:14.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.086 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultWebXml' -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultWebXml) -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Location of the default web.xml resource or file' -2024-09-20 17:47:14.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Location of the default web.xml resource or file) -2024-09-20 17:47:14.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.088 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@40148d9) -2024-09-20 17:47:14.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.091 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.091 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'delegate' -2024-09-20 17:47:14.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=delegate) -2024-09-20 17:47:14.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to '' -2024-09-20 17:47:14.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=) -2024-09-20 17:47:14.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.093 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@77bb6515) -2024-09-20 17:47:14.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.095 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.095 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'displayName' -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=displayName) -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The display name of this web application' -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The display name of this web application) -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.099 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@664738fd) -2024-09-20 17:47:14.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.100 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.100 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'distributable' -2024-09-20 17:47:14.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=distributable) -2024-09-20 17:47:14.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The distributable flag for this web application.' -2024-09-20 17:47:14.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The distributable flag for this web application.) -2024-09-20 17:47:14.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.102 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6c271ff8) -2024-09-20 17:47:14.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.104 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.104 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'docBase' -2024-09-20 17:47:14.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=docBase) -2024-09-20 17:47:14.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The document root for this web application' -2024-09-20 17:47:14.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The document root for this web application) -2024-09-20 17:47:14.106 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.106 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.106 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.106 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.106 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@626ec525) -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.107 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.108 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'encodedPath' -2024-09-20 17:47:14.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=encodedPath) -2024-09-20 17:47:14.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The encoded path' -2024-09-20 17:47:14.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The encoded path) -2024-09-20 17:47:14.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.111 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4ed187b0) -2024-09-20 17:47:14.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.114 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.114 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'ignoreAnnotations' -2024-09-20 17:47:14.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=ignoreAnnotations) -2024-09-20 17:47:14.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Ignore annotations flag.' -2024-09-20 17:47:14.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Ignore annotations flag.) -2024-09-20 17:47:14.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@110ece47) -2024-09-20 17:47:14.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'instanceManager' -2024-09-20 17:47:14.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=instanceManager) -2024-09-20 17:47:14.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Object that creates and destroys servlets, filters, and listeners. Include dependency injection and postConstruct/preDestroy handling' -2024-09-20 17:47:14.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Object that creates and destroys servlets, filters, and listeners. Include dependency injection and postConstruct/preDestroy handling) -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.tomcat.InstanceManager' -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.tomcat.InstanceManager) -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4502db41) -2024-09-20 17:47:14.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.121 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'javaVMs' -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=javaVMs) -2024-09-20 17:47:14.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The Java virtual machines on which this module is running' -2024-09-20 17:47:14.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The Java virtual machines on which this module is running) -2024-09-20 17:47:14.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:14.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:14.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.123 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@51d17929) -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.126 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.126 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'loader' -2024-09-20 17:47:14.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=loader) -2024-09-20 17:47:14.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated loader.' -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated loader.) -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.Loader' -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.Loader) -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@137f88a4) -2024-09-20 17:47:14.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.130 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.136 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'logEffectiveWebXml' -2024-09-20 17:47:14.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=logEffectiveWebXml) -2024-09-20 17:47:14.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the effective web.xml be logged when the context starts?' -2024-09-20 17:47:14.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the effective web.xml be logged when the context starts?) -2024-09-20 17:47:14.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.141 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@74e4107a) -2024-09-20 17:47:14.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.142 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.143 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'logger' -2024-09-20 17:47:14.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=logger) -2024-09-20 17:47:14.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated logger.' -2024-09-20 17:47:14.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated logger.) -2024-09-20 17:47:14.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.juli.logging.Log' -2024-09-20 17:47:14.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.juli.logging.Log) -2024-09-20 17:47:14.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.146 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@276f1574) -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.147 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'managedResource' -2024-09-20 17:47:14.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=managedResource) -2024-09-20 17:47:14.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The managed resource this MBean is associated with' -2024-09-20 17:47:14.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The managed resource this MBean is associated with) -2024-09-20 17:47:14.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.Object' -2024-09-20 17:47:14.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.Object) -2024-09-20 17:47:14.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.149 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7d2d3881) -2024-09-20 17:47:14.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.151 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.152 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'manager' -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=manager) -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated manager.' -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated manager.) -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.Manager' -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.Manager) -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1278a528) -2024-09-20 17:47:14.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.156 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.156 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'mapperContextRootRedirectEnabled' -2024-09-20 17:47:14.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=mapperContextRootRedirectEnabled) -2024-09-20 17:47:14.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the Mapper be used for context root redirects' -2024-09-20 17:47:14.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the Mapper be used for context root redirects) -2024-09-20 17:47:14.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@464b00dd) -2024-09-20 17:47:14.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.160 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.160 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'mapperDirectoryRedirectEnabled' -2024-09-20 17:47:14.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=mapperDirectoryRedirectEnabled) -2024-09-20 17:47:14.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the Mapper be used for directory redirects' -2024-09-20 17:47:14.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the Mapper be used for directory redirects) -2024-09-20 17:47:14.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.162 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@19d079d5) -2024-09-20 17:47:14.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.164 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.165 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'namingContextListener' -2024-09-20 17:47:14.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=namingContextListener) -2024-09-20 17:47:14.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated naming context listener.' -2024-09-20 17:47:14.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated naming context listener.) -2024-09-20 17:47:14.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.core.NamingContextListener' -2024-09-20 17:47:14.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.core.NamingContextListener) -2024-09-20 17:47:14.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.166 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d2da35e) -2024-09-20 17:47:14.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.168 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.168 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'objectName' -2024-09-20 17:47:14.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=objectName) -2024-09-20 17:47:14.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name of the object' -2024-09-20 17:47:14.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name of the object) -2024-09-20 17:47:14.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5aab1636) -2024-09-20 17:47:14.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.173 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.174 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'originalDocBase' -2024-09-20 17:47:14.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=originalDocBase) -2024-09-20 17:47:14.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The original document root for this web application' -2024-09-20 17:47:14.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The original document root for this web application) -2024-09-20 17:47:14.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.176 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@44f8a856) -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'override' -2024-09-20 17:47:14.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=override) -2024-09-20 17:47:14.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The default context.xml override flag for this web application' -2024-09-20 17:47:14.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The default context.xml override flag for this web application) -2024-09-20 17:47:14.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.180 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5e7c7fcd) -2024-09-20 17:47:14.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.181 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.182 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:14.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:14.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of this Context' -2024-09-20 17:47:14.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of this Context) -2024-09-20 17:47:14.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.183 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3e2b100f) -2024-09-20 17:47:14.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.185 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.185 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'parentClassLoader' -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=parentClassLoader) -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Parent class loader.' -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Parent class loader.) -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.ClassLoader' -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.ClassLoader) -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3cb3ab5a) -2024-09-20 17:47:14.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.190 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.191 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'path' -2024-09-20 17:47:14.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=path) -2024-09-20 17:47:14.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The context path for this Context' -2024-09-20 17:47:14.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The context path for this Context) -2024-09-20 17:47:14.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.193 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3d081e82) -2024-09-20 17:47:14.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.195 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.195 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'paused' -2024-09-20 17:47:14.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=paused) -2024-09-20 17:47:14.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The request processing pause flag (while reloading occurs)' -2024-09-20 17:47:14.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The request processing pause flag (while reloading occurs)) -2024-09-20 17:47:14.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.199 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@379cf9) -2024-09-20 17:47:14.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.200 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.200 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'privileged' -2024-09-20 17:47:14.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=privileged) -2024-09-20 17:47:14.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Access to tomcat internals' -2024-09-20 17:47:14.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Access to tomcat internals) -2024-09-20 17:47:14.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.204 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@66fa5f98) -2024-09-20 17:47:14.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.205 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.205 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processingTime' -2024-09-20 17:47:14.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processingTime) -2024-09-20 17:47:14.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Cumulative execution times of all servlets in this context' -2024-09-20 17:47:14.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Cumulative execution times of all servlets in this context) -2024-09-20 17:47:14.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:14.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:14.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.207 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4732c166) -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.208 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxTime' -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxTime) -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum execution time of all servlets in this context' -2024-09-20 17:47:14.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum execution time of all servlets in this context) -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3a333b0c) -2024-09-20 17:47:14.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minTime' -2024-09-20 17:47:14.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minTime) -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Minimum execution time of all servlets in this context' -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Minimum execution time of all servlets in this context) -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@65fa8e7) -2024-09-20 17:47:14.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'requestCount' -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=requestCount) -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Cumulative request count of all servlets in this context' -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Cumulative request count of all servlets in this context) -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.216 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@32ed312b) -2024-09-20 17:47:14.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.218 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.218 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'errorCount' -2024-09-20 17:47:14.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=errorCount) -2024-09-20 17:47:14.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Cumulative error count of all servlets in this context' -2024-09-20 17:47:14.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Cumulative error count of all servlets in this context) -2024-09-20 17:47:14.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:14.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6305efe1) -2024-09-20 17:47:14.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.222 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'publicId' -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=publicId) -2024-09-20 17:47:14.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The public identifier of the DTD for the web application deployment descriptor version that is being parsed' -2024-09-20 17:47:14.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The public identifier of the DTD for the web application deployment descriptor version that is being parsed) -2024-09-20 17:47:14.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.224 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@40cd53d6) -2024-09-20 17:47:14.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.226 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.226 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realm' -2024-09-20 17:47:14.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realm) -2024-09-20 17:47:14.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated realm.' -2024-09-20 17:47:14.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated realm.) -2024-09-20 17:47:14.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.Realm' -2024-09-20 17:47:14.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.Realm) -2024-09-20 17:47:14.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.229 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3b2ed3b8) -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'reloadable' -2024-09-20 17:47:14.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=reloadable) -2024-09-20 17:47:14.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The reloadable flag for this web application' -2024-09-20 17:47:14.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The reloadable flag for this web application) -2024-09-20 17:47:14.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.232 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6091c99f) -2024-09-20 17:47:14.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.234 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.234 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'renewThreadsWhenStoppingContext' -2024-09-20 17:47:14.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=renewThreadsWhenStoppingContext) -2024-09-20 17:47:14.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should Tomcat renew the threads of the thread pool when the application is stopped to avoid memory leaks because of uncleaned ThreadLocal variables.' -2024-09-20 17:47:14.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should Tomcat renew the threads of the thread pool when the application is stopped to avoid memory leaks because of uncleaned ThreadLocal variables.) -2024-09-20 17:47:14.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.237 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2ca7588b) -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'server' -2024-09-20 17:47:14.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=server) -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The J2EE Server this module is deployed on' -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The J2EE Server this module is deployed on) -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6deed2a) -2024-09-20 17:47:14.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.241 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'com.yf.exam.config.MybatisConfig#MapperScannerRegistrar#0' -2024-09-20 17:47:14.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.242 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.242 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCookieName' -2024-09-20 17:47:14.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCookieName) -2024-09-20 17:47:14.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name to use for session cookies.'null' indicates that the name is controlled by the application.' -2024-09-20 17:47:14.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name to use for session cookies.'null' indicates that the name is controlled by the application.) -2024-09-20 17:47:14.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.247 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4ba04d5a) -2024-09-20 17:47:14.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.249 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.249 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCookieDomain' -2024-09-20 17:47:14.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCookieDomain) -2024-09-20 17:47:14.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The domain to use for session cookies.'null' indicates that the domain is controlled by the application.' -2024-09-20 17:47:14.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The domain to use for session cookies.'null' indicates that the domain is controlled by the application.) -2024-09-20 17:47:14.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.254 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2593b880) -2024-09-20 17:47:14.255 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-09-20 17:47:14.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.257 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.257 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCookiePath' -2024-09-20 17:47:14.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCookiePath) -2024-09-20 17:47:14.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The path to use for session cookies.'null' indicates that the path is controlled by the application.' -2024-09-20 17:47:14.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The path to use for session cookies.'null' indicates that the path is controlled by the application.) -2024-09-20 17:47:14.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.260 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@33e6dfb9) -2024-09-20 17:47:14.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.265 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.265 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionTimeout' -2024-09-20 17:47:14.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionTimeout) -2024-09-20 17:47:14.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The session timeout (in minutes) for this web application' -2024-09-20 17:47:14.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The session timeout (in minutes) for this web application) -2024-09-20 17:47:14.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:14.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:14.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.269 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@42a0d352) -2024-09-20 17:47:14.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.271 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.272 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.272 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'startTime' -2024-09-20 17:47:14.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=startTime) -2024-09-20 17:47:14.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time (in milliseconds since January 1, 1970, 00:00:00) when this context was started' -2024-09-20 17:47:14.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time (in milliseconds since January 1, 1970, 00:00:00) when this context was started) -2024-09-20 17:47:14.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:14.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:14.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.275 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.275 DEBUG 22604 --- [main] org.apache.ibatis.logging.LogFactory : Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. -2024-09-20 17:47:14.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@ba39cc1) -2024-09-20 17:47:14.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.278 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.278 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'startupTime' -2024-09-20 17:47:14.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=startupTime) -2024-09-20 17:47:14.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time (in milliseconds) it took to start this context' -2024-09-20 17:47:14.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time (in milliseconds) it took to start this context) -2024-09-20 17:47:14.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:14.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:14.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.281 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@334c728d) -2024-09-20 17:47:14.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.284 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/paper/mapper/PaperMapper.class] -2024-09-20 17:47:14.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.284 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/qu/mapper/QuMapper.class] -2024-09-20 17:47:14.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.284 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/qu/mapper/QuAnswerMapper.class] -2024-09-20 17:47:14.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.285 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/config/mapper/SysConfigMapper.class] -2024-09-20 17:47:14.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:14.285 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/user/mapper/SysUserMapper.class] -2024-09-20 17:47:14.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:14.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:14.286 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/user/mapper/SysRoleMapper.class] -2024-09-20 17:47:14.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:14.286 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/user/mapper/SysUserRoleMapper.class] -2024-09-20 17:47:14.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.286 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/user/book/mapper/UserBookMapper.class] -2024-09-20 17:47:14.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.286 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/user/exam/mapper/UserExamMapper.class] -2024-09-20 17:47:14.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.287 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/system/mapper/SysDictMapper.class] -2024-09-20 17:47:14.287 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/exam/mapper/ExamDepartMapper.class] -2024-09-20 17:47:14.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.287 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/exam/mapper/ExamRepoMapper.class] -2024-09-20 17:47:14.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.287 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/exam/mapper/ExamMapper.class] -2024-09-20 17:47:14.287 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.287 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/qu/mapper/QuRepoMapper.class] -2024-09-20 17:47:14.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.288 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/sys/depart/mapper/SysDepartMapper.class] -2024-09-20 17:47:14.288 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/paper/mapper/PaperQuAnswerMapper.class] -2024-09-20 17:47:14.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.288 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/paper/mapper/PaperQuMapper.class] -2024-09-20 17:47:14.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.288 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Identified candidate component class: URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/com/yf/exam/modules/repo/mapper/RepoMapper.class] -2024-09-20 17:47:14.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3652684a) -2024-09-20 17:47:14.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.290 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'paperMapper' and 'com.yf.exam.modules.paper.mapper.PaperMapper' mapperInterface -2024-09-20 17:47:14.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.290 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'paperMapper'. -2024-09-20 17:47:14.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.290 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'quMapper' and 'com.yf.exam.modules.qu.mapper.QuMapper' mapperInterface -2024-09-20 17:47:14.291 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.291 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'quMapper'. -2024-09-20 17:47:14.291 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'quAnswerMapper' and 'com.yf.exam.modules.qu.mapper.QuAnswerMapper' mapperInterface -2024-09-20 17:47:14.291 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.291 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'quAnswerMapper'. -2024-09-20 17:47:14.291 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'sysConfigMapper' and 'com.yf.exam.modules.sys.config.mapper.SysConfigMapper' mapperInterface -2024-09-20 17:47:14.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.291 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'sysConfigMapper'. -2024-09-20 17:47:14.291 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'sysUserMapper' and 'com.yf.exam.modules.sys.user.mapper.SysUserMapper' mapperInterface -2024-09-20 17:47:14.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.291 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'sysUserMapper'. -2024-09-20 17:47:14.293 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'sysRoleMapper' and 'com.yf.exam.modules.sys.user.mapper.SysRoleMapper' mapperInterface -2024-09-20 17:47:14.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.293 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'sysRoleMapper'. -2024-09-20 17:47:14.293 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'sysUserRoleMapper' and 'com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper' mapperInterface -2024-09-20 17:47:14.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.293 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'sysUserRoleMapper'. -2024-09-20 17:47:14.293 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'userBookMapper' and 'com.yf.exam.modules.user.book.mapper.UserBookMapper' mapperInterface -2024-09-20 17:47:14.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.293 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'userBookMapper'. -2024-09-20 17:47:14.293 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'userExamMapper' and 'com.yf.exam.modules.user.exam.mapper.UserExamMapper' mapperInterface -2024-09-20 17:47:14.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'swallowOutput' -2024-09-20 17:47:14.293 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'userExamMapper'. -2024-09-20 17:47:14.294 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'sysDictMapper' and 'com.yf.exam.modules.sys.system.mapper.SysDictMapper' mapperInterface -2024-09-20 17:47:14.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=swallowOutput) -2024-09-20 17:47:14.294 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'sysDictMapper'. -2024-09-20 17:47:14.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Flag to set to cause the system.out and system.err to be redirected to the logger when executing a servlet' -2024-09-20 17:47:14.294 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'examDepartMapper' and 'com.yf.exam.modules.exam.mapper.ExamDepartMapper' mapperInterface -2024-09-20 17:47:14.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Flag to set to cause the system.out and system.err to be redirected to the logger when executing a servlet) -2024-09-20 17:47:14.294 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'examDepartMapper'. -2024-09-20 17:47:14.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.294 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'examRepoMapper' and 'com.yf.exam.modules.exam.mapper.ExamRepoMapper' mapperInterface -2024-09-20 17:47:14.295 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'examRepoMapper'. -2024-09-20 17:47:14.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.295 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'examMapper' and 'com.yf.exam.modules.exam.mapper.ExamMapper' mapperInterface -2024-09-20 17:47:14.295 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'examMapper'. -2024-09-20 17:47:14.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.295 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'quRepoMapper' and 'com.yf.exam.modules.qu.mapper.QuRepoMapper' mapperInterface -2024-09-20 17:47:14.295 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'quRepoMapper'. -2024-09-20 17:47:14.295 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.295 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'sysDepartMapper' and 'com.yf.exam.modules.sys.depart.mapper.SysDepartMapper' mapperInterface -2024-09-20 17:47:14.296 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'sysDepartMapper'. -2024-09-20 17:47:14.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.296 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'paperQuAnswerMapper' and 'com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper' mapperInterface -2024-09-20 17:47:14.296 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'paperQuAnswerMapper'. -2024-09-20 17:47:14.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.296 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'paperQuMapper' and 'com.yf.exam.modules.paper.mapper.PaperQuMapper' mapperInterface -2024-09-20 17:47:14.296 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'paperQuMapper'. -2024-09-20 17:47:14.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.296 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Creating MapperFactoryBean with name 'repoMapper' and 'com.yf.exam.modules.repo.mapper.RepoMapper' mapperInterface -2024-09-20 17:47:14.296 DEBUG 22604 --- [main] o.m.s.mapper.ClassPathMapperScanner : Enabling autowire by type for MapperFactoryBean with name 'repoMapper'. -2024-09-20 17:47:14.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@72ac0791) -2024-09-20 17:47:14.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.299 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.299 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'tldScanTime' -2024-09-20 17:47:14.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=tldScanTime) -2024-09-20 17:47:14.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time spend scanning jars for TLDs for this context' -2024-09-20 17:47:14.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time spend scanning jars for TLDs for this context) -2024-09-20 17:47:14.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:14.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:14.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.302 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@65fed891) -2024-09-20 17:47:14.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'tldValidation' -2024-09-20 17:47:14.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=tldValidation) -2024-09-20 17:47:14.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the parsing of *.tld files be performed by a validating parser?' -2024-09-20 17:47:14.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the parsing of *.tld files be performed by a validating parser?) -2024-09-20 17:47:14.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.306 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@35f616b9) -2024-09-20 17:47:14.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.309 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.309 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'unloadDelay' -2024-09-20 17:47:14.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=unloadDelay) -2024-09-20 17:47:14.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Amount of ms that the container will wait for servlets to unload' -2024-09-20 17:47:14.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Amount of ms that the container will wait for servlets to unload) -2024-09-20 17:47:14.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:14.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:14.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.312 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@10c32875) -2024-09-20 17:47:14.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.314 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.316 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'unpackWAR' -2024-09-20 17:47:14.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=unpackWAR) -2024-09-20 17:47:14.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Unpack WAR property' -2024-09-20 17:47:14.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Unpack WAR property) -2024-09-20 17:47:14.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.320 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2412573) -2024-09-20 17:47:14.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.323 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.323 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useHttpOnly' -2024-09-20 17:47:14.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useHttpOnly) -2024-09-20 17:47:14.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Indicates that session cookies should use HttpOnly' -2024-09-20 17:47:14.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Indicates that session cookies should use HttpOnly) -2024-09-20 17:47:14.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.328 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@11e85ffa) -2024-09-20 17:47:14.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.330 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.330 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useNaming' -2024-09-20 17:47:14.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useNaming) -2024-09-20 17:47:14.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Create a JNDI naming context for this application?' -2024-09-20 17:47:14.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Create a JNDI naming context for this application?) -2024-09-20 17:47:14.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:14.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:14.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.333 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@14aec0a0) -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.335 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.335 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useRelativeRedirects' -2024-09-20 17:47:14.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useRelativeRedirects) -2024-09-20 17:47:14.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'When generating location headers for 302 responses, should a relative URI be used?' -2024-09-20 17:47:14.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=When generating location headers for 302 responses, should a relative URI be used?) -2024-09-20 17:47:14.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.336 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1da7c2c0) -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.338 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.338 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'webappVersion' -2024-09-20 17:47:14.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=webappVersion) -2024-09-20 17:47:14.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The version of this web application - used in parallel deployment to differentiate different versions of the same web application' -2024-09-20 17:47:14.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The version of this web application - used in parallel deployment to differentiate different versions of the same web application) -2024-09-20 17:47:14.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.341 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@164606ba) -2024-09-20 17:47:14.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.343 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.343 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'welcomeFiles' -2024-09-20 17:47:14.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=welcomeFiles) -2024-09-20 17:47:14.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The welcome files for this context' -2024-09-20 17:47:14.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The welcome files for this context) -2024-09-20 17:47:14.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:14.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:14.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.347 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@45029c07) -2024-09-20 17:47:14.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.351 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.351 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'workDir' -2024-09-20 17:47:14.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=workDir) -2024-09-20 17:47:14.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The pathname to the work directory for this context' -2024-09-20 17:47:14.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The pathname to the work directory for this context) -2024-09-20 17:47:14.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.355 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@27cbffc7) -2024-09-20 17:47:14.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.357 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.357 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'xmlValidation' -2024-09-20 17:47:14.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=xmlValidation) -2024-09-20 17:47:14.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the parsing of web.xml and web-fragment.xml files be performed by a validating parser?' -2024-09-20 17:47:14.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the parsing of web.xml and web-fragment.xml files be performed by a validating parser?) -2024-09-20 17:47:14.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.361 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4d9883c) -2024-09-20 17:47:14.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'xmlNamespaceAware' -2024-09-20 17:47:14.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=xmlNamespaceAware) -2024-09-20 17:47:14.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the parsing of web.xml and web-fragment.xml files be performed by a namespace aware parser?' -2024-09-20 17:47:14.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the parsing of web.xml and web-fragment.xml files be performed by a namespace aware parser?) -2024-09-20 17:47:14.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.366 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@228c3dcb) -2024-09-20 17:47:14.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.367 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.369 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addApplicationListener' -2024-09-20 17:47:14.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addApplicationListener) -2024-09-20 17:47:14.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new Listener class name to the set of Listeners configured for this application.' -2024-09-20 17:47:14.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new Listener class name to the set of Listeners configured for this application.) -2024-09-20 17:47:14.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.372 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.372 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of a listener class' -2024-09-20 17:47:14.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of a listener class) -2024-09-20 17:47:14.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.375 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@733f6f39) -2024-09-20 17:47:14.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.378 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.378 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@b72835e) -2024-09-20 17:47:14.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.382 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.382 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addApplicationParameter' -2024-09-20 17:47:14.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addApplicationParameter) -2024-09-20 17:47:14.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new application parameter for this application.' -2024-09-20 17:47:14.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new application parameter for this application.) -2024-09-20 17:47:14.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.385 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.386 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of a listener class' -2024-09-20 17:47:14.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of a listener class) -2024-09-20 17:47:14.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.389 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@43a26264) -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.390 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.391 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@37dbe) -2024-09-20 17:47:14.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.392 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.393 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addChild' -2024-09-20 17:47:14.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addChild) -2024-09-20 17:47:14.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a child to this Context' -2024-09-20 17:47:14.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a child to this Context) -2024-09-20 17:47:14.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.396 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.397 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:14.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:14.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new child to be added' -2024-09-20 17:47:14.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new child to be added) -2024-09-20 17:47:14.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.399 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@84d9c20) -2024-09-20 17:47:14.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the child to be added' -2024-09-20 17:47:14.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the child to be added) -2024-09-20 17:47:14.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.403 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@173a8604) -2024-09-20 17:47:14.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.405 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.405 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:14.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@475b77c5) -2024-09-20 17:47:14.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.407 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.407 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addLifecycleListener' -2024-09-20 17:47:14.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addLifecycleListener) -2024-09-20 17:47:14.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a lifecycle listener to this Context' -2024-09-20 17:47:14.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a lifecycle listener to this Context) -2024-09-20 17:47:14.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.410 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.410 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:14.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:14.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new lifecycle listener to be added' -2024-09-20 17:47:14.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new lifecycle listener to be added) -2024-09-20 17:47:14.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.413 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5cae0c1d) -2024-09-20 17:47:14.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.415 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.415 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@38662734) -2024-09-20 17:47:14.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.417 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.417 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addLocaleEncodingMappingParameter' -2024-09-20 17:47:14.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addLocaleEncodingMappingParameter) -2024-09-20 17:47:14.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a Locale Encoding Mapping' -2024-09-20 17:47:14.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a Locale Encoding Mapping) -2024-09-20 17:47:14.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.420 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.420 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'locale' -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=locale) -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Locale to map an encoding for' -2024-09-20 17:47:14.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Locale to map an encoding for) -2024-09-20 17:47:14.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.422 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7baf9c9a) -2024-09-20 17:47:14.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.423 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.424 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'encoding' -2024-09-20 17:47:14.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=encoding) -2024-09-20 17:47:14.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Encoding to be used for a give locale' -2024-09-20 17:47:14.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Encoding to be used for a give locale) -2024-09-20 17:47:14.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.437 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@67562975) -2024-09-20 17:47:14.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.441 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4b340f66) -2024-09-20 17:47:14.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.443 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.443 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addMimeMapping' -2024-09-20 17:47:14.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addMimeMapping) -2024-09-20 17:47:14.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new MIME mapping, replacing any existing mapping for the specified extension.' -2024-09-20 17:47:14.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new MIME mapping, replacing any existing mapping for the specified extension.) -2024-09-20 17:47:14.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.446 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.446 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'extension' -2024-09-20 17:47:14.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=extension) -2024-09-20 17:47:14.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Filename extension being mapped' -2024-09-20 17:47:14.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Filename extension being mapped) -2024-09-20 17:47:14.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.448 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@42e2ceb3) -2024-09-20 17:47:14.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'mimeType' -2024-09-20 17:47:14.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=mimeType) -2024-09-20 17:47:14.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Corresponding MIME type' -2024-09-20 17:47:14.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Corresponding MIME type) -2024-09-20 17:47:14.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.453 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@45aec139) -2024-09-20 17:47:14.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.455 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.455 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@13655578) -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.457 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.457 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addParameter' -2024-09-20 17:47:14.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addParameter) -2024-09-20 17:47:14.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new context initialization parameter, replacing any existing value for the specified name.' -2024-09-20 17:47:14.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new context initialization parameter, replacing any existing value for the specified name.) -2024-09-20 17:47:14.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.459 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.459 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the new parameter' -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the new parameter) -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7841374d) -2024-09-20 17:47:14.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.464 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.464 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'value' -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=value) -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Value of the new parameter' -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Value of the new parameter) -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.467 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2c82e9a0) -2024-09-20 17:47:14.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.468 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.469 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:14.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1f165200) -2024-09-20 17:47:14.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.471 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.471 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addRoleMapping' -2024-09-20 17:47:14.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addRoleMapping) -2024-09-20 17:47:14.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a security role reference for this web application.' -2024-09-20 17:47:14.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a security role reference for this web application.) -2024-09-20 17:47:14.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.474 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.474 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:14.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:14.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Security role used in the application' -2024-09-20 17:47:14.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Security role used in the application) -2024-09-20 17:47:14.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.476 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@26611a0f) -2024-09-20 17:47:14.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.478 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.478 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'link' -2024-09-20 17:47:14.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=link) -2024-09-20 17:47:14.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Actual security role to check for' -2024-09-20 17:47:14.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Actual security role to check for) -2024-09-20 17:47:14.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.480 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@576bbad1) -2024-09-20 17:47:14.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.482 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.482 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:14.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6c1f8675) -2024-09-20 17:47:14.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.484 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.484 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addSecurityRole' -2024-09-20 17:47:14.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addSecurityRole) -2024-09-20 17:47:14.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new security role for this web application.' -2024-09-20 17:47:14.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new security role for this web application.) -2024-09-20 17:47:14.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.488 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.488 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:14.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:14.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New security role' -2024-09-20 17:47:14.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New security role) -2024-09-20 17:47:14.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.490 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@41b45fa4) -2024-09-20 17:47:14.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.493 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-09-20 17:47:14.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6f2b84ff) -2024-09-20 17:47:14.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.494 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.494 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.494 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata' -2024-09-20 17:47:14.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.495 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-09-20 17:47:14.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addServletMapping' -2024-09-20 17:47:14.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addServletMapping) -2024-09-20 17:47:14.495 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dataSourceInitializerSchedulerDependencyPostProcessor' -2024-09-20 17:47:14.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new servlet mapping, replacing any existing mapping for the specified pattern.' -2024-09-20 17:47:14.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new servlet mapping, replacing any existing mapping for the specified pattern.) -2024-09-20 17:47:14.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.496 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.496 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.498 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.498 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'pattern' -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=pattern) -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'URL pattern to be mapped' -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=URL pattern to be mapped) -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.499 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@651c06f9) -2024-09-20 17:47:14.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.501 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.501 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the corresponding servlet to execute' -2024-09-20 17:47:14.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the corresponding servlet to execute) -2024-09-20 17:47:14.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@75a01801) -2024-09-20 17:47:14.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.506 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.506 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.506 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-09-20 17:47:14.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:14.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@160a206e) -2024-09-20 17:47:14.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.507 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-09-20 17:47:14.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addServletMapping' -2024-09-20 17:47:14.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addServletMapping) -2024-09-20 17:47:14.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new servlet mapping, replacing any existing mapping for the specified pattern.' -2024-09-20 17:47:14.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new servlet mapping, replacing any existing mapping for the specified pattern.) -2024-09-20 17:47:14.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.511 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.511 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.512 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'lifecycleBeanPostProcessor' -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'pattern' -2024-09-20 17:47:14.512 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=pattern) -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'URL pattern to be mapped' -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=URL pattern to be mapped) -2024-09-20 17:47:14.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.514 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2535422c) -2024-09-20 17:47:14.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.515 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalScheduledAnnotationProcessor' -2024-09-20 17:47:14.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.515 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.scheduling.annotation.SchedulingConfiguration' -2024-09-20 17:47:14.515 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.516 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the corresponding servlet to execute' -2024-09-20 17:47:14.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the corresponding servlet to execute) -2024-09-20 17:47:14.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.518 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@201bb3bd) -2024-09-20 17:47:14.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.520 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.520 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'jspWildcard' -2024-09-20 17:47:14.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=jspWildcard) -2024-09-20 17:47:14.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to ''true' if name identifies the JspServlet and pattern contains a wildcard; 'false' otherwise' -2024-09-20 17:47:14.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description='true' if name identifies the JspServlet and pattern contains a wildcard; 'false' otherwise) -2024-09-20 17:47:14.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean) -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@550ed7af) -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@12c09430) -2024-09-20 17:47:14.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.526 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addValve' -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addValve) -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a valve to this Context' -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a valve to this Context) -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.529 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.529 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveType' -2024-09-20 17:47:14.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveType) -2024-09-20 17:47:14.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new valve to be added' -2024-09-20 17:47:14.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new valve to be added) -2024-09-20 17:47:14.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.531 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.531 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAsyncAnnotationProcessor' -2024-09-20 17:47:14.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.531 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.scheduling.annotation.ProxyAsyncConfiguration' -2024-09-20 17:47:14.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1deb9066) -2024-09-20 17:47:14.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.532 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.532 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@60104e3d) -2024-09-20 17:47:14.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.535 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.536 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addWatchedResource' -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addWatchedResource) -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to ' Add a resource which will be watched for reloading by the host auto deployer.' -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description= Add a resource which will be watched for reloading by the host auto deployer.) -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.538 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.538 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Path to the resource, either absolute or relative to docBase' -2024-09-20 17:47:14.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Path to the resource, either absolute or relative to docBase) -2024-09-20 17:47:14.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.541 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@43005e3f) -2024-09-20 17:47:14.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.543 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.545 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5577337b) -2024-09-20 17:47:14.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.546 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.547 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addWelcomeFile' -2024-09-20 17:47:14.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addWelcomeFile) -2024-09-20 17:47:14.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new welcome file to the set recognized by this Context.' -2024-09-20 17:47:14.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new welcome file to the set recognized by this Context.) -2024-09-20 17:47:14.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.549 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.549 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New welcome file name' -2024-09-20 17:47:14.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New welcome file name) -2024-09-20 17:47:14.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.552 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@145ee113) -2024-09-20 17:47:14.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.553 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.554 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.554 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.554 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.554 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.554 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.554 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.554 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@76dd3403) -2024-09-20 17:47:14.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.555 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.555 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addWrapperLifecycle' -2024-09-20 17:47:14.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addWrapperLifecycle) -2024-09-20 17:47:14.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add the classname of a LifecycleListener to be added to each Wrapper appended to this Context.' -2024-09-20 17:47:14.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add the classname of a LifecycleListener to be added to each Wrapper appended to this Context.) -2024-09-20 17:47:14.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.557 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'scheduledConfig' -2024-09-20 17:47:14.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.557 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.557 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of a LifecycleListener class' -2024-09-20 17:47:14.558 INFO 22604 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'scheduledConfig' of type [com.yf.exam.config.ScheduledConfig$$EnhancerBySpringCGLIB$$e4a4be2c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2024-09-20 17:47:14.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of a LifecycleListener class) -2024-09-20 17:47:14.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.561 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.561 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@37ed6d41) -2024-09-20 17:47:14.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.562 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.562 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5b6d7c2c) -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.565 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.565 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addWrapperListener' -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addWrapperListener) -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add the classname of a ContainerListener to be added to each Wrapper appended to this Context.' -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add the classname of a ContainerListener to be added to each Wrapper appended to this Context.) -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.567 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of a ContainerListener class' -2024-09-20 17:47:14.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of a ContainerListener class) -2024-09-20 17:47:14.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.569 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3858482b) -2024-09-20 17:47:14.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.571 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.571 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@27ba0e0f) -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:14.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:14.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy the context' -2024-09-20 17:47:14.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy the context) -2024-09-20 17:47:14.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.575 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.576 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.576 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultAdvisorAutoProxyCreator' -2024-09-20 17:47:14.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.576 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'shiroConfig' -2024-09-20 17:47:14.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7be1e8dc) -2024-09-20 17:47:14.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.577 INFO 22604 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'shiroConfig' of type [com.yf.exam.config.ShiroConfig$$EnhancerBySpringCGLIB$$eaa30c70] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2024-09-20 17:47:14.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findApplicationListeners' -2024-09-20 17:47:14.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findApplicationListeners) -2024-09-20 17:47:14.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of application listener class names configured for this application.' -2024-09-20 17:47:14.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of application listener class names configured for this application.) -2024-09-20 17:47:14.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:14.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:14.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.581 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.581 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4bdd6790) -2024-09-20 17:47:14.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.583 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.583 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findApplicationParameters' -2024-09-20 17:47:14.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findApplicationParameters) -2024-09-20 17:47:14.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of application parameters for this application.' -2024-09-20 17:47:14.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of application parameters for this application.) -2024-09-20 17:47:14.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:14.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:14.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.585 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.585 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.586 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-09-20 17:47:14.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@31be67d0) -2024-09-20 17:47:14.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.588 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.588 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.588 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'securityManager' -2024-09-20 17:47:14.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findConstraints' -2024-09-20 17:47:14.589 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'shiroRealm' -2024-09-20 17:47:14.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findConstraints) -2024-09-20 17:47:14.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of security constraints for this web application. If there are none, a zero-length array is returned.' -2024-09-20 17:47:14.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of security constraints for this web application. If there are none, a zero-length array is returned.) -2024-09-20 17:47:14.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:14.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4683dd9e) -2024-09-20 17:47:14.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.592 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.592 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findContainerListenerNames' -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findContainerListenerNames) -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of container listener class names configured for this application.' -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of container listener class names configured for this application.) -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.601 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.602 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@32d06a9a) -2024-09-20 17:47:14.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.605 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.605 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findErrorPage' -2024-09-20 17:47:14.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findErrorPage) -2024-09-20 17:47:14.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the error page entry for the specified HTTP error code, if any; otherwise return null' -2024-09-20 17:47:14.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the error page entry for the specified HTTP error code, if any; otherwise return null) -2024-09-20 17:47:14.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.610 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.611 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'errorCode' -2024-09-20 17:47:14.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=errorCode) -2024-09-20 17:47:14.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Error code to look up' -2024-09-20 17:47:14.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Error code to look up) -2024-09-20 17:47:14.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int' -2024-09-20 17:47:14.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int) -2024-09-20 17:47:14.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@12916ab7) -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.615 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.615 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@50d31fd2) -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.617 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.617 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findErrorPage' -2024-09-20 17:47:14.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findErrorPage) -2024-09-20 17:47:14.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the error page entry for the specified Java exception type, if any; otherwise return null.' -2024-09-20 17:47:14.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the error page entry for the specified Java exception type, if any; otherwise return null.) -2024-09-20 17:47:14.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.619 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.620 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'exceptionType' -2024-09-20 17:47:14.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=exceptionType) -2024-09-20 17:47:14.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Exception type to look up' -2024-09-20 17:47:14.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Exception type to look up) -2024-09-20 17:47:14.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.621 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@864577b) -2024-09-20 17:47:14.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.623 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.624 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@39517857) -2024-09-20 17:47:14.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.625 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.625 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findErrorPages' -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findErrorPages) -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of defined error pages for all specified error codes and exception types.' -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of defined error pages for all specified error codes and exception types.) -2024-09-20 17:47:14.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:14.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:14.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.627 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.627 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@208c6918) -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.629 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.629 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.629 DEBUG 22604 --- [main] o.a.s.spring.LifecycleBeanPostProcessor : Initializing bean [shiroRealm]... -2024-09-20 17:47:14.629 DEBUG 22604 --- [main] org.apache.shiro.realm.AuthorizingRealm : No authorizationCache instance set. Checking for a cacheManager... -2024-09-20 17:47:14.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.629 DEBUG 22604 --- [main] org.apache.shiro.realm.AuthorizingRealm : No cache or cacheManager properties have been set. Authorization cache cannot be obtained. -2024-09-20 17:47:14.629 INFO 22604 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'shiroRealm' of type [com.yf.exam.ability.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2024-09-20 17:47:14.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.629 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'securityManager' via factory method to bean named 'shiroRealm' -2024-09-20 17:47:14.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findFilterDef' -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findFilterDef) -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the filter definition for the specified filter name, if any; otherwise return null.' -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the filter definition for the specified filter name, if any; otherwise return null.) -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.631 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.632 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'exceptionType' -2024-09-20 17:47:14.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=exceptionType) -2024-09-20 17:47:14.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Exception type to look up' -2024-09-20 17:47:14.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Exception type to look up) -2024-09-20 17:47:14.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.633 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6869cf54) -2024-09-20 17:47:14.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.635 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.635 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@421c82ad) -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findFilterDefs' -2024-09-20 17:47:14.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findFilterDefs) -2024-09-20 17:47:14.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of defined filters for this Context.' -2024-09-20 17:47:14.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of defined filters for this Context.) -2024-09-20 17:47:14.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:14.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:14.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.640 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.640 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@703dd979) -2024-09-20 17:47:14.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.643 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.643 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findFilterMaps' -2024-09-20 17:47:14.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findFilterMaps) -2024-09-20 17:47:14.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of filter mappings for this Context.' -2024-09-20 17:47:14.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of filter mappings for this Context.) -2024-09-20 17:47:14.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:14.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:14.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.646 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.646 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@33baaacf) -2024-09-20 17:47:14.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.648 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.648 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findLifecycleListenerNames' -2024-09-20 17:47:14.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findLifecycleListenerNames) -2024-09-20 17:47:14.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of lifecycle listener class names configured for this application.' -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of lifecycle listener class names configured for this application.) -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@150fc083) -2024-09-20 17:47:14.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.653 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.653 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findMimeMapping' -2024-09-20 17:47:14.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findMimeMapping) -2024-09-20 17:47:14.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the MIME type to which the specified extension is mapped, if any; otherwise return null.' -2024-09-20 17:47:14.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the MIME type to which the specified extension is mapped, if any; otherwise return null.) -2024-09-20 17:47:14.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.657 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.657 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'extension' -2024-09-20 17:47:14.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=extension) -2024-09-20 17:47:14.660 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Extension to map to a MIME type' -2024-09-20 17:47:14.660 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Extension to map to a MIME type) -2024-09-20 17:47:14.660 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.660 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.661 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@33a02165) -2024-09-20 17:47:14.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.663 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.663 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2d48d079) -2024-09-20 17:47:14.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.665 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.665 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findMimeMappings' -2024-09-20 17:47:14.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findMimeMappings) -2024-09-20 17:47:14.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the extensions for which MIME mappings are defined.' -2024-09-20 17:47:14.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the extensions for which MIME mappings are defined.) -2024-09-20 17:47:14.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.669 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.670 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.670 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.670 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.671 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.671 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.671 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.671 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.671 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.671 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4bc2fbcd) -2024-09-20 17:47:14.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.672 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.673 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findParameter' -2024-09-20 17:47:14.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findParameter) -2024-09-20 17:47:14.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the value for the specified context initialization parameter name, if any; otherwise return null.' -2024-09-20 17:47:14.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the value for the specified context initialization parameter name, if any; otherwise return null.) -2024-09-20 17:47:14.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.675 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.675 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the parameter to return' -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the parameter to return) -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@20a231ee) -2024-09-20 17:47:14.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.681 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.681 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@12bb8796) -2024-09-20 17:47:14.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.683 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.683 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findParameters' -2024-09-20 17:47:14.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findParameters) -2024-09-20 17:47:14.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the names of all defined context initialization parameters for this Context.' -2024-09-20 17:47:14.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the names of all defined context initialization parameters for this Context.) -2024-09-20 17:47:14.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.687 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.687 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@799b56a0) -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findRoleMapping' -2024-09-20 17:47:14.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findRoleMapping) -2024-09-20 17:47:14.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'For the given security role (as used by an application), return the corresponding role name (as defined by the underlying Realm) if there is one. Otherwise, return the specified role unchanged.' -2024-09-20 17:47:14.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=For the given security role (as used by an application), return the corresponding role name (as defined by the underlying Realm) if there is one. Otherwise, return the specified role unchanged.) -2024-09-20 17:47:14.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.691 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.691 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:14.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:14.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Security role to map' -2024-09-20 17:47:14.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Security role to map) -2024-09-20 17:47:14.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.695 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@255bc6cd) -2024-09-20 17:47:14.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.696 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.696 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@14c7aec9) -2024-09-20 17:47:14.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.699 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.699 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findSecurityRole' -2024-09-20 17:47:14.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findSecurityRole) -2024-09-20 17:47:14.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return 'true' if the specified security role is defined for this application; otherwise return 'false'.' -2024-09-20 17:47:14.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return 'true' if the specified security role is defined for this application; otherwise return 'false'.) -2024-09-20 17:47:14.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:14.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:14.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.702 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.702 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:14.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:14.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Security role to verify' -2024-09-20 17:47:14.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Security role to verify) -2024-09-20 17:47:14.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.705 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5a8e0cf0) -2024-09-20 17:47:14.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.707 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.707 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@79837f57) -2024-09-20 17:47:14.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.709 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.709 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findSecurityRoles' -2024-09-20 17:47:14.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findSecurityRoles) -2024-09-20 17:47:14.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the security roles defined for this application.' -2024-09-20 17:47:14.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the security roles defined for this application.) -2024-09-20 17:47:14.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.711 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.711 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@215b304) -2024-09-20 17:47:14.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.713 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.713 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findServletMapping' -2024-09-20 17:47:14.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findServletMapping) -2024-09-20 17:47:14.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the servlet name mapped by the specified pattern..' -2024-09-20 17:47:14.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the servlet name mapped by the specified pattern..) -2024-09-20 17:47:14.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'pattern' -2024-09-20 17:47:14.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=pattern) -2024-09-20 17:47:14.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Pattern for which a mapping is requested' -2024-09-20 17:47:14.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Pattern for which a mapping is requested) -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2b0df469) -2024-09-20 17:47:14.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.719 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1ce9474) -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.721 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.721 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findServletMappings' -2024-09-20 17:47:14.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findServletMappings) -2024-09-20 17:47:14.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the patterns of all defined servlet mappings for this Context.' -2024-09-20 17:47:14.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the patterns of all defined servlet mappings for this Context.) -2024-09-20 17:47:14.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.723 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@63d52add) -2024-09-20 17:47:14.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.725 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.725 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findStatusPage' -2024-09-20 17:47:14.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findStatusPage) -2024-09-20 17:47:14.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the context-relative URI of the error page for the specified HTTP status code.' -2024-09-20 17:47:14.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the context-relative URI of the error page for the specified HTTP status code.) -2024-09-20 17:47:14.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.727 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.729 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'status' -2024-09-20 17:47:14.730 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=status) -2024-09-20 17:47:14.730 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'HTTP status code to look up' -2024-09-20 17:47:14.730 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=HTTP status code to look up) -2024-09-20 17:47:14.730 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int' -2024-09-20 17:47:14.730 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int) -2024-09-20 17:47:14.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.731 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4c773830) -2024-09-20 17:47:14.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.732 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.732 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@89d236b) -2024-09-20 17:47:14.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.735 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.736 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findStatusPages' -2024-09-20 17:47:14.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findStatusPages) -2024-09-20 17:47:14.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of HTTP status codes for which error pages have been specified.' -2024-09-20 17:47:14.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of HTTP status codes for which error pages have been specified.) -2024-09-20 17:47:14.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Lint' -2024-09-20 17:47:14.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Lint) -2024-09-20 17:47:14.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.738 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.738 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7d857b38) -2024-09-20 17:47:14.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.741 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.741 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findWatchedResources' -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findWatchedResources) -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of watched resources for this Context.' -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of watched resources for this Context.) -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.743 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.743 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.743 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.743 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.744 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@37cc3597) -2024-09-20 17:47:14.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.745 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.745 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findWelcomeFile' -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findWelcomeFile) -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return 'true' if the specified welcome file is defined for this Context; otherwise return 'false'.' -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return 'true' if the specified welcome file is defined for this Context; otherwise return 'false'.) -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:14.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:14.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.748 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.748 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Welcome file to verify' -2024-09-20 17:47:14.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Welcome file to verify) -2024-09-20 17:47:14.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.750 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@428f2de6) -2024-09-20 17:47:14.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@23e8d8a7) -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findWelcomeFiles' -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findWelcomeFiles) -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of welcome files defined for this Context.' -2024-09-20 17:47:14.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of welcome files defined for this Context.) -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@75e22b59) -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findWrapperLifecycles' -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findWrapperLifecycles) -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of LifecycleListener classes that will be added to newly created Wrappers automatically.' -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of LifecycleListener classes that will be added to newly created Wrappers automatically.) -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2354d8ff) -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findWrapperListeners' -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findWrapperListeners) -2024-09-20 17:47:14.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of ContainerListener classes that will be added to newly created Wrappers automatically.' -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of ContainerListener classes that will be added to newly created Wrappers automatically.) -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@188f216e) -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.763 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.763 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:14.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:14.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Register the context into the running server' -2024-09-20 17:47:14.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Register the context into the running server) -2024-09-20 17:47:14.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.767 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.767 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7d47ef38) -2024-09-20 17:47:14.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.771 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.771 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:14.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:14.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start the context' -2024-09-20 17:47:14.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start the context) -2024-09-20 17:47:14.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.774 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.774 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@191bab2a) -2024-09-20 17:47:14.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.776 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.776 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:14.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:14.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop the context' -2024-09-20 17:47:14.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop the context) -2024-09-20 17:47:14.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.778 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.778 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1c0d1bd6) -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'reload' -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=reload) -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Reload the web application' -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Reload the web application) -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7de8dd68) -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeApplicationListener' -2024-09-20 17:47:14.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeApplicationListener) -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove the specified application listener class from the set of listeners for this application.' -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove the specified application listener class from the set of listeners for this application.) -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Java class name of the listener to be removed' -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Java class name of the listener to be removed) -2024-09-20 17:47:14.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3f14d3c2) -2024-09-20 17:47:14.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.785 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.785 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7b926df1) -2024-09-20 17:47:14.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeApplicationParameter' -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeApplicationParameter) -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove the application parameter with the specified name from the set for this application.' -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove the application parameter with the specified name from the set for this application.) -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the application parameter to remove' -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the application parameter to remove) -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.790 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@fb50afe) -2024-09-20 17:47:14.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.791 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.791 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@340d95fd) -2024-09-20 17:47:14.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.795 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.795 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeChild' -2024-09-20 17:47:14.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeChild) -2024-09-20 17:47:14.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a child from this Context' -2024-09-20 17:47:14.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a child from this Context) -2024-09-20 17:47:14.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.797 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.798 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the existing child Container to be removed' -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the existing child Container to be removed) -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2d1eca7d) -2024-09-20 17:47:14.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.801 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.801 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@458bd7ca) -2024-09-20 17:47:14.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeLifecycleListeners' -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeLifecycleListeners) -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Removes lifecycle listeners of given class type from this Context' -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Removes lifecycle listeners of given class type from this Context) -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the lifecycle listeners to be removed' -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the lifecycle listeners to be removed) -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@62cec77f) -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3ab404a6) -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeMimeMapping' -2024-09-20 17:47:14.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeMimeMapping) -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove the MIME mapping for the specified extension, if it exists; otherwise, no action is taken..' -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove the MIME mapping for the specified extension, if it exists; otherwise, no action is taken..) -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'extension' -2024-09-20 17:47:14.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=extension) -2024-09-20 17:47:14.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Extension to remove the mapping for' -2024-09-20 17:47:14.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Extension to remove the mapping for) -2024-09-20 17:47:14.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.811 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@61226caf) -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7a0cc2c6) -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeParameter' -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeParameter) -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove the context initialization parameter with the specified name, if it exists; otherwise, no action is taken.' -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove the context initialization parameter with the specified name, if it exists; otherwise, no action is taken.) -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.814 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the parameter to remove' -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the parameter to remove) -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.815 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6e6d17c7) -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7466bf98) -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeRoleMapping' -2024-09-20 17:47:14.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeRoleMapping) -2024-09-20 17:47:14.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove any security role reference for the specified name' -2024-09-20 17:47:14.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove any security role reference for the specified name) -2024-09-20 17:47:14.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.820 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.820 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:14.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:14.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Security role (as used in the application) to remove' -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Security role (as used in the application) to remove) -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6d3f2af) -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1a551a41) -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeSecurityRole' -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeSecurityRole) -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove any security role with the specified name.' -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove any security role with the specified name.) -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:14.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:14.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Security role to remove' -2024-09-20 17:47:14.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Security role to remove) -2024-09-20 17:47:14.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.827 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1c80f5e3) -2024-09-20 17:47:14.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.830 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.830 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5ddb0394) -2024-09-20 17:47:14.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.832 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.832 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeServletMapping' -2024-09-20 17:47:14.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeServletMapping) -2024-09-20 17:47:14.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove any servlet mapping for the specified pattern, if it exists; otherwise, no action is taken.' -2024-09-20 17:47:14.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove any servlet mapping for the specified pattern, if it exists; otherwise, no action is taken.) -2024-09-20 17:47:14.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.835 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.835 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'pattern' -2024-09-20 17:47:14.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=pattern) -2024-09-20 17:47:14.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'URL pattern of the mapping to remove' -2024-09-20 17:47:14.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=URL pattern of the mapping to remove) -2024-09-20 17:47:14.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4404c40a) -2024-09-20 17:47:14.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@76b149d9) -2024-09-20 17:47:14.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeValve' -2024-09-20 17:47:14.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeValve) -2024-09-20 17:47:14.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a valve from this Context' -2024-09-20 17:47:14.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a valve from this Context) -2024-09-20 17:47:14.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveName' -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveName) -2024-09-20 17:47:14.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Objectname of the valve to be removed' -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Objectname of the valve to be removed) -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6d059501) -2024-09-20 17:47:14.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.843 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.843 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6847fc96) -2024-09-20 17:47:14.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeWatchedResource' -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeWatchedResource) -2024-09-20 17:47:14.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove the specified watched resource name from the list associated with this Context.' -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove the specified watched resource name from the list associated with this Context.) -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the watched resource to be removed' -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the watched resource to be removed) -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@a815100) -2024-09-20 17:47:14.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@76022e08) -2024-09-20 17:47:14.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeWelcomeFile' -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeWelcomeFile) -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove the specified welcome file name from the list recognized by this Context.' -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove the specified welcome file name from the list recognized by this Context.) -2024-09-20 17:47:14.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the welcome file to be removed' -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the welcome file to be removed) -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@37ee1054) -2024-09-20 17:47:14.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@609af973) -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeWrapperLifecycle' -2024-09-20 17:47:14.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeWrapperLifecycle) -2024-09-20 17:47:14.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a class name from the set of LifecycleListener classes that will be added to newly created Wrappers.' -2024-09-20 17:47:14.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a class name from the set of LifecycleListener classes that will be added to newly created Wrappers.) -2024-09-20 17:47:14.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Class name of a LifecycleListener class to be removed' -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Class name of a LifecycleListener class to be removed) -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6093bd31) -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.857 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@786bd45) -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.858 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeWrapperListener' -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeWrapperListener) -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a class name from the set of ContainerListener classes that will be added to newly created Wrappers.' -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a class name from the set of ContainerListener classes that will be added to newly created Wrappers.) -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Class name of a ContainerListener class to be removed' -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Class name of a ContainerListener class to be removed) -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@40ad7151) -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@77cb5956) -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.863 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@acc08ab) -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.865 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3812e022) -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:14.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardContext, className=org.apache.catalina.mbeans.ContextMBean, description=Standard Context Component, group=Context, type=org.apache.catalina.core.StandardContext]) -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:14.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardContextValve' -2024-09-20 17:47:14.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardContextValve) -2024-09-20 17:47:14.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that implements the default basic behavior for the StandardContext container implementation' -2024-09-20 17:47:14.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that implements the default basic behavior for the StandardContext container implementation) -2024-09-20 17:47:14.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:14.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:14.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:14.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:14.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardContextValve' -2024-09-20 17:47:14.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardContextValve) -2024-09-20 17:47:14.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:14.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting?' -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting?) -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@139e3988) -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.876 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.877 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3e32c344) -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@54511d79) -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - ' -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardContextValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that implements the default basic behavior for the StandardContext container implementation, group=Valve, type=org.apache.catalina.core.StandardContextValve]) -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:14.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardEngine' -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardEngine) -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardEngine' -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardEngine) -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Standard Engine Component' -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Standard Engine Component) -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Engine' -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Engine) -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ContainerMBean' -2024-09-20 17:47:14.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ContainerMBean) -2024-09-20 17:47:14.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.884 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.884 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'backgroundProcessorDelay' -2024-09-20 17:47:14.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=backgroundProcessorDelay) -2024-09-20 17:47:14.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The processor delay for this component.' -2024-09-20 17:47:14.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The processor delay for this component.) -2024-09-20 17:47:14.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:14.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:14.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.886 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7bede421) -2024-09-20 17:47:14.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.888 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.889 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'catalinaBase' -2024-09-20 17:47:14.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=catalinaBase) -2024-09-20 17:47:14.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Base (instance) directory for this Engine, typically same as catalina.base system property' -2024-09-20 17:47:14.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Base (instance) directory for this Engine, typically same as catalina.base system property) -2024-09-20 17:47:14.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.890 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@19ddc0ad) -2024-09-20 17:47:14.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultHost' -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultHost) -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name of the default Host for this Engine' -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name of the default Host for this Engine) -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@315d0831) -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.895 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'jvmRoute' -2024-09-20 17:47:14.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=jvmRoute) -2024-09-20 17:47:14.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Route used for load balancing' -2024-09-20 17:47:14.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Route used for load balancing) -2024-09-20 17:47:14.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6dbb71b6) -2024-09-20 17:47:14.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'managedResource' -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=managedResource) -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The managed resource this MBean is associated with' -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The managed resource this MBean is associated with) -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.Object' -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.Object) -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@79634ccc) -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.902 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.903 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:14.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:14.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Unique name of this Engine' -2024-09-20 17:47:14.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Unique name of this Engine) -2024-09-20 17:47:14.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.905 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@e4c23e5) -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.906 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realm' -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realm) -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated realm.' -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated realm.) -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.Realm' -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.Realm) -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5709be9d) -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'startChildren' -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=startChildren) -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Will children be started automatically when they are added.' -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Will children be started automatically when they are added.) -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6109430b) -2024-09-20 17:47:14.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'startStopThreads' -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=startStopThreads) -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The number of threads to use when starting and stopping child Hosts' -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The number of threads to use when starting and stopping child Hosts) -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2ef66ca) -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.915 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6dd32e79) -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addChild' -2024-09-20 17:47:14.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addChild) -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a virtual host' -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a virtual host) -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:14.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:14.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new child to be added' -2024-09-20 17:47:14.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new child to be added) -2024-09-20 17:47:14.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.919 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@77349808) -2024-09-20 17:47:14.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.922 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.922 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the child to be added' -2024-09-20 17:47:14.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the child to be added) -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5c0e8cfe) -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@252e7883) -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.927 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.927 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addLifecycleListener' -2024-09-20 17:47:14.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addLifecycleListener) -2024-09-20 17:47:14.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a lifecycle listener to this Engine' -2024-09-20 17:47:14.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a lifecycle listener to this Engine) -2024-09-20 17:47:14.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new lifecycle listener to be added' -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new lifecycle listener to be added) -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@51fa3ab9) -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@25d1c56) -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addValve' -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addValve) -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a valve to this Engine' -2024-09-20 17:47:14.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a valve to this Engine) -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveType' -2024-09-20 17:47:14.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveType) -2024-09-20 17:47:14.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new valve to be added' -2024-09-20 17:47:14.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new valve to be added) -2024-09-20 17:47:14.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.934 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2a9c099f) -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7c20962f) -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7c8f54e0) -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@16da488b) -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeChild' -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeChild) -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a child(Host) from this Engine' -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a child(Host) from this Engine) -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.943 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.943 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:14.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:14.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the existing child Container to be removed' -2024-09-20 17:47:14.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the existing child Container to be removed) -2024-09-20 17:47:14.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5c407b3e) -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.945 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.946 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@24291f77) -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeLifecycleListeners' -2024-09-20 17:47:14.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeLifecycleListeners) -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Removes lifecycle listeners of given class type from this Engine' -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Removes lifecycle listeners of given class type from this Engine) -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the lifecycle listeners to be removed' -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the lifecycle listeners to be removed) -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@22076746) -2024-09-20 17:47:14.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@66dded9d) -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeValve' -2024-09-20 17:47:14.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeValve) -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a valve from this Engine' -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a valve from this Engine) -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:14.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveName' -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveName) -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Objectname of the valve to be removed' -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Objectname of the valve to be removed) -2024-09-20 17:47:14.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@399bf3f3) -2024-09-20 17:47:14.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@55259110) -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4c01e1a5) -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@45394cbd) -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:14.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardEngine, className=org.apache.catalina.mbeans.ContainerMBean, description=Standard Engine Component, group=Engine, type=org.apache.catalina.core.StandardEngine]) -2024-09-20 17:47:14.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardEngineValve' -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardEngineValve) -2024-09-20 17:47:14.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that implements the default basic behavior for the StandardEngine container implementation' -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that implements the default basic behavior for the StandardEngine container implementation) -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardEngineValve' -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardEngineValve) -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting?' -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting?) -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@235b2b82) -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5a0f93e8) -2024-09-20 17:47:14.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.966 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.966 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@19c04dc5) -2024-09-20 17:47:14.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - ' -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardEngineValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that implements the default basic behavior for the StandardEngine container implementation, group=Valve, type=org.apache.catalina.core.StandardEngineValve]) -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardHost' -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardHost) -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Standard Host Component' -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Standard Host Component) -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Host' -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Host) -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardHost' -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardHost) -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ContainerMBean' -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ContainerMBean) -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:14.971 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'aliases' -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=aliases) -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Host aliases' -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Host aliases) -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.972 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1613b6e4) -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'appBase' -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=appBase) -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The application root for this Host' -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The application root for this Host) -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6cee989f) -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'autoDeploy' -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=autoDeploy) -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The auto deploy flag for this Host' -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The auto deploy flag for this Host) -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4ad8d639) -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'backgroundProcessorDelay' -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=backgroundProcessorDelay) -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The processor delay for this component.' -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The processor delay for this component.) -2024-09-20 17:47:14.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@516d04c2) -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'children' -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=children) -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Object names of all children' -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Object names of all children) -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljavax.management.ObjectName;' -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljavax.management.ObjectName;) -2024-09-20 17:47:14.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5ac22c9d) -2024-09-20 17:47:14.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'configClass' -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=configClass) -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The configuration class for contexts' -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The configuration class for contexts) -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@42f07d3a) -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'contextClass' -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=contextClass) -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The Java class name of the default Context implementation class for deployed web applications.' -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The Java class name of the default Context implementation class for deployed web applications.) -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.986 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.986 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.986 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.986 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.986 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.986 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4e951243) -2024-09-20 17:47:14.986 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'copyXML' -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=copyXML) -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should XML files be copied to $CATALINA_BASE/conf/{engine}/{host} by default when a web application is deployed?' -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should XML files be copied to $CATALINA_BASE/conf/{engine}/{host} by default when a web application is deployed?) -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@77675447) -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'createDirs' -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=createDirs) -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we create directories upon startup for appBase and xmlBase? ' -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we create directories upon startup for appBase and xmlBase? ) -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3c0a38f2) -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deployIgnore' -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deployIgnore) -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Paths within appBase ignored for automatic deployment' -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Paths within appBase ignored for automatic deployment) -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7d529be4) -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deployOnStartup' -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deployOnStartup) -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The deploy on startup flag for this Host' -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The deploy on startup flag for this Host) -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.993 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1b338907) -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.994 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deployXML' -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deployXML) -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'deploy Context XML config files property' -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=deploy Context XML config files property) -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@56bb334a) -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:14.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'errorReportValveClass' -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=errorReportValveClass) -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The Java class name of the default error reporter implementation class for deployed web applications.' -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The Java class name of the default error reporter implementation class for deployed web applications.) -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:14.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3b9b4cc7) -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:14.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'managedResource' -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=managedResource) -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The managed resource this MBean is associated with' -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The managed resource this MBean is associated with) -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.Object' -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.Object) -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@527f7deb) -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.001 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.002 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Unique name of this Host' -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Unique name of this Host) -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5503bd12) -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realm' -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realm) -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Associated realm.' -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Associated realm.) -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.catalina.Realm' -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.catalina.Realm) -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5a2df59b) -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'startChildren' -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=startChildren) -2024-09-20 17:47:15.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Will children be started automatically when they are added?' -2024-09-20 17:47:15.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Will children be started automatically when they are added?) -2024-09-20 17:47:15.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.007 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3b31776d) -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'startStopThreads' -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=startStopThreads) -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The number of threads to use when starting, stopping and deploying child Contexts' -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The number of threads to use when starting, stopping and deploying child Contexts) -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1208d5c5) -2024-09-20 17:47:15.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.010 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.010 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5aab11bb) -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'undeployOldVersions' -2024-09-20 17:47:15.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=undeployOldVersions) -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Determines if old versions of applications deployed using parallel deployment are automatically undeployed when no longer used. Requires autoDeploy to be enabled.' -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Determines if old versions of applications deployed using parallel deployment are automatically undeployed when no longer used. Requires autoDeploy to be enabled.) -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6f1fb658) -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'unpackWARs' -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=unpackWARs) -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Unpack WARs property' -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Unpack WARs property) -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5fa52ec9) -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'valveNames' -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=valveNames) -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Return the MBean Names of the Valves associated with this Host' -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Return the MBean Names of the Valves associated with this Host) -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@b577e05) -2024-09-20 17:47:15.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'workDir' -2024-09-20 17:47:15.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=workDir) -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Work Directory base for applications' -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Work Directory base for applications) -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@973901d) -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'xmlBase' -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=xmlBase) -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The XML root for this Host.' -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The XML root for this Host.) -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1b4c4a1d) -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addAlias' -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addAlias) -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add an alias name that should be mapped to this Host' -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add an alias name that should be mapped to this Host) -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'alias' -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=alias) -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The alias to be added' -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The alias to be added) -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6de9ecdb) -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5dfe0035) -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addChild' -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addChild) -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a child(Context) to this Host' -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a child(Context) to this Host) -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:15.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:15.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new child to be added' -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new child to be added) -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@489880ef) -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the child to be added' -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the child to be added) -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@317d2743) -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@13509a83) -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addLifecycleListener' -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addLifecycleListener) -2024-09-20 17:47:15.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a lifecycle listener to this Host' -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a lifecycle listener to this Host) -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:15.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:15.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new lifecycle listener to be added' -2024-09-20 17:47:15.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new lifecycle listener to be added) -2024-09-20 17:47:15.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.037 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3e02df74) -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3291bfa3) -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addValve' -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addValve) -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a valve to this Host' -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a valve to this Host) -2024-09-20 17:47:15.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveType' -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveType) -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new valve to be added' -2024-09-20 17:47:15.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new valve to be added) -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6a0ec18d) -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7d9ddacd) -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.044 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@554c4375) -2024-09-20 17:47:15.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.046 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.047 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findAliases' -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findAliases) -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of alias names for this Host' -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of alias names for this Host) -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6a9f92d8) -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findReloadedContextMemoryLeaks' -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findReloadedContextMemoryLeaks) -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Provide a list of contexts that have leaked memory on reload. This will attempt to force a full garbage collection. Use with extreme caution on production systems.' -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Provide a list of contexts that have leaked memory on reload. This will attempt to force a full garbage collection. Use with extreme caution on production systems.) -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@760134af) -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:15.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:15.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:15.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:15.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6559d310) -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.053 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeAlias' -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeAlias) -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove the specified alias name from the aliases for this Host' -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove the specified alias name from the aliases for this Host) -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.054 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'alias' -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=alias) -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Alias name to be removed' -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Alias name to be removed) -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.055 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@52b97325) -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@442622f8) -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeChild' -2024-09-20 17:47:15.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeChild) -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a child(Context) from this Host' -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a child(Context) from this Host) -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.058 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the existing child Container to be removed' -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the existing child Container to be removed) -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3b7dd29f) -2024-09-20 17:47:15.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@109747b3) -2024-09-20 17:47:15.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeLifecycleListeners' -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeLifecycleListeners) -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Removes lifecycle listeners of given class type from this Host' -2024-09-20 17:47:15.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Removes lifecycle listeners of given class type from this Host) -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:15.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the lifecycle listeners to be removed' -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the lifecycle listeners to be removed) -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@92e3edf) -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7ceafce0) -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.065 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeValve' -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeValve) -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a valve from this Host' -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a valve from this Host) -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.066 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveName' -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveName) -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Objectname of the valve to be removed' -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Objectname of the valve to be removed) -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@29d630c8) -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3d6509e) -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:15.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:15.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:15.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:15.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.070 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7bf64efd) -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@50d0a09f) -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardHost, className=org.apache.catalina.mbeans.ContainerMBean, description=Standard Host Component, group=Host, type=org.apache.catalina.core.StandardHost]) -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.074 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardHostValve' -2024-09-20 17:47:15.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardHostValve) -2024-09-20 17:47:15.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that implements the default basic behavior for the StandardHost container implementation' -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that implements the default basic behavior for the StandardHost container implementation) -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardHostValve' -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardHostValve) -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.076 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting?' -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting?) -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@48989a3d) -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.078 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@797b7110) -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@30b35964) -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - ' -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardHostValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that implements the default basic behavior for the StandardHost container implementation, group=Valve, type=org.apache.catalina.core.StandardHostValve]) -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardServer' -2024-09-20 17:47:15.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardServer) -2024-09-20 17:47:15.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Standard Server Component' -2024-09-20 17:47:15.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Standard Server Component) -2024-09-20 17:47:15.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Server' -2024-09-20 17:47:15.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Server) -2024-09-20 17:47:15.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardServer' -2024-09-20 17:47:15.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardServer) -2024-09-20 17:47:15.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.086 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.086 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'address' -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=address) -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The address on which we wait for shutdown commands.' -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The address on which we wait for shutdown commands.) -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.087 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@616215ad) -2024-09-20 17:47:15.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'managedResource' -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=managedResource) -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The managed resource this MBean is associated with' -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The managed resource this MBean is associated with) -2024-09-20 17:47:15.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.Object' -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.Object) -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1aa86e69) -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'port' -2024-09-20 17:47:15.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=port) -2024-09-20 17:47:15.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'TCP port (excluding any offset) for shutdown messages' -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=TCP port (excluding any offset) for shutdown messages) -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2aab14f9) -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portOffset' -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portOffset) -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The offset applied to port and to the port attributes of any nested connectors' -2024-09-20 17:47:15.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The offset applied to port and to the port attributes of any nested connectors) -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2015c9bc) -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portWithOffset' -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portWithOffset) -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Actual TCP port (including any offset) for shutdown messages' -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Actual TCP port (including any offset) for shutdown messages) -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@51ab6f6e) -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'serverInfo' -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=serverInfo) -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Tomcat server release identifier' -2024-09-20 17:47:15.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Tomcat server release identifier) -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@8298814) -2024-09-20 17:47:15.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'serverBuilt' -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=serverBuilt) -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Tomcat server built timestamp' -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Tomcat server built timestamp) -2024-09-20 17:47:15.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7ad74934) -2024-09-20 17:47:15.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.101 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.101 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'serverNumber' -2024-09-20 17:47:15.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=serverNumber) -2024-09-20 17:47:15.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Tomcat server's version number' -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Tomcat server's version number) -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@748137fb) -2024-09-20 17:47:15.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'serviceNames' -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=serviceNames) -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Object names of all services we know about' -2024-09-20 17:47:15.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Object names of all services we know about) -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljavax.management.ObjectName;' -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljavax.management.ObjectName;) -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7edbf61a) -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.106 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.106 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.106 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.106 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.106 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'shutdown' -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=shutdown) -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Shutdown password' -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Shutdown password) -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3a76a8fd) -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7a28d86e) -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.110 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'await' -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=await) -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Wait for the shutdown message' -2024-09-20 17:47:15.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Wait for the shutdown message) -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@76b163f) -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'storeConfig' -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=storeConfig) -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Save current state to server.xml file' -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Save current state to server.xml file) -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@26214bee) -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardServer, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Standard Server Component, group=Server, type=org.apache.catalina.core.StandardServer]) -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardService' -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardService) -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Standard Service Component' -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Standard Service Component) -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Service' -2024-09-20 17:47:15.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Service) -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardService' -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardService) -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ServiceMBean' -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ServiceMBean) -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectorNames' -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectorNames) -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'ObjectNames of the connectors' -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=ObjectNames of the connectors) -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljavax.management.ObjectName;' -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljavax.management.ObjectName;) -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@36246344) -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.120 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'managedResource' -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=managedResource) -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The managed resource this MBean is associated with' -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The managed resource this MBean is associated with) -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.Object' -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.Object) -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6079969a) -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Unique name of this Service' -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Unique name of this Service) -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@40e42981) -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5ef10829) -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addConnector' -2024-09-20 17:47:15.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addConnector) -2024-09-20 17:47:15.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new connector' -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new connector) -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'address' -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=address) -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The IP address on which to bind' -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The IP address on which to bind) -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4bda6ef0) -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'port' -2024-09-20 17:47:15.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=port) -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'TCP port number to listen on' -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=TCP port number to listen on) -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'int' -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=int) -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@673bfc57) -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.131 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'isAjp' -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=isAjp) -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Create a AJP/1.3 Connector' -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Create a AJP/1.3 Connector) -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean) -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.132 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6726910) -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.133 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'isSSL' -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=isSSL) -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Create a secure Connector' -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Create a secure Connector) -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=boolean) -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.134 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@509499b7) -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - ' -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.135 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4821d0bb) -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addExecutor' -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addExecutor) -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Adds a named executor to the service' -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Adds a named executor to the service) -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:15.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Classname of the Executor to be added' -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Classname of the Executor to be added) -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@70c044ac) -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@656f994d) -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findConnectors' -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findConnectors) -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Find and return the set of Connectors associated with this Service' -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Find and return the set of Connectors associated with this Service) -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@11c2fd76) -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findExecutors' -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findExecutors) -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Retrieves all executors' -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Retrieves all executors) -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:15.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@572053fd) -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getExecutor' -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getExecutor) -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Retrieves executor by name' -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Retrieves executor by name) -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the executor to be retrieved' -2024-09-20 17:47:15.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the executor to be retrieved) -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@25b79891) -2024-09-20 17:47:15.147 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3c8bc89b) -2024-09-20 17:47:15.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.149 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.149 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:15.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3aa4bb31) -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.153 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.153 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6f4ea823) -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardService, className=org.apache.catalina.mbeans.ServiceMBean, description=Standard Service Component, group=Service, type=org.apache.catalina.core.StandardService]) -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardThreadExecutor' -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardThreadExecutor) -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Standard implementation of a thread pool' -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Standard implementation of a thread pool) -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Executor' -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Executor) -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardThreadExecutor' -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardThreadExecutor) -2024-09-20 17:47:15.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'activeCount' -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=activeCount) -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of threads currently processing a task' -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of threads currently processing a task) -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.159 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@76a4d64b) -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'completedTaskCount' -2024-09-20 17:47:15.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=completedTaskCount) -2024-09-20 17:47:15.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of tasks completed by the executor' -2024-09-20 17:47:15.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of tasks completed by the executor) -2024-09-20 17:47:15.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@14890714) -2024-09-20 17:47:15.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'corePoolSize' -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=corePoolSize) -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Core size of the thread pool' -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Core size of the thread pool) -2024-09-20 17:47:15.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@b6b5b87) -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'daemon' -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=daemon) -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Run threads in daemon or non-daemon state?' -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Run threads in daemon or non-daemon state?) -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@11fee579) -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'largestPoolSize' -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=largestPoolSize) -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Peak number of threads' -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Peak number of threads) -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@41b86f83) -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.168 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxIdleTime' -2024-09-20 17:47:15.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxIdleTime) -2024-09-20 17:47:15.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Max number of milliseconds a thread can be idle before it can be shutdown' -2024-09-20 17:47:15.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Max number of milliseconds a thread can be idle before it can be shutdown) -2024-09-20 17:47:15.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1dd56107) -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.171 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxQueueSize' -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxQueueSize) -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum number of tasks for the pending task queue' -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum number of tasks for the pending task queue) -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.172 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4c33b659) -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxThreads' -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxThreads) -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum number of allocated threads' -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum number of allocated threads) -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2a80478b) -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minSpareThreads' -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minSpareThreads) -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Minimum number of allocated threads' -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Minimum number of allocated threads) -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2846f12f) -2024-09-20 17:47:15.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.177 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.177 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.178 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Unique name of this Executor' -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Unique name of this Executor) -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1e2d7079) -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'namePrefix' -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=namePrefix) -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name prefix for thread names created by this executor' -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name prefix for thread names created by this executor) -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.181 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4f7d9c9b) -2024-09-20 17:47:15.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.183 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.184 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'poolSize' -2024-09-20 17:47:15.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=poolSize) -2024-09-20 17:47:15.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of threads in the pool' -2024-09-20 17:47:15.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of threads in the pool) -2024-09-20 17:47:15.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@67e936e0) -2024-09-20 17:47:15.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.187 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.187 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'prestartminSpareThreads' -2024-09-20 17:47:15.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=prestartminSpareThreads) -2024-09-20 17:47:15.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Prestart threads?' -2024-09-20 17:47:15.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Prestart threads?) -2024-09-20 17:47:15.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@78397cbb) -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'queueSize' -2024-09-20 17:47:15.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=queueSize) -2024-09-20 17:47:15.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of tasks waiting to be processed' -2024-09-20 17:47:15.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of tasks waiting to be processed) -2024-09-20 17:47:15.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.193 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d62657d) -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.195 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.195 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.197 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2e58a90e) -2024-09-20 17:47:15.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.198 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.199 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'threadPriority' -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=threadPriority) -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The thread priority for threads in this thread pool' -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The thread priority for threads in this thread pool) -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@28c413) -2024-09-20 17:47:15.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'threadRenewalDelay' -2024-09-20 17:47:15.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=threadRenewalDelay) -2024-09-20 17:47:15.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'After a context is stopped, threads in the pool are renewed. To avoid renewing all threads at the same time, this delay is observed between 2 threads being renewed. Value is in ms, default value is 1000ms. If negative, threads are not renewed.' -2024-09-20 17:47:15.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=After a context is stopped, threads in the pool are renewed. To avoid renewing all threads at the same time, this delay is observed between 2 threads being renewed. Value is in ms, default value is 1000ms. If negative, threads are not renewed.) -2024-09-20 17:47:15.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:15.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:15.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.203 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3347bc09) -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardThreadExecutor, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Standard implementation of a thread pool, group=Executor, type=org.apache.catalina.core.StandardThreadExecutor]) -2024-09-20 17:47:15.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.206 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.206 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardWrapper' -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardWrapper) -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Wrapper that represents an individual servlet definition' -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Wrapper that represents an individual servlet definition) -2024-09-20 17:47:15.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Wrapper' -2024-09-20 17:47:15.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Wrapper) -2024-09-20 17:47:15.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardWrapper' -2024-09-20 17:47:15.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardWrapper) -2024-09-20 17:47:15.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ContainerMBean' -2024-09-20 17:47:15.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ContainerMBean) -2024-09-20 17:47:15.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.209 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.209 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:15.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:15.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Async support' -2024-09-20 17:47:15.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Async support) -2024-09-20 17:47:15.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:15.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:15.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.212 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2d906e91) -2024-09-20 17:47:15.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'available' -2024-09-20 17:47:15.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=available) -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The date and time at which this servlet will become available (in milliseconds since the epoch), or zero if the servlet is available. If this value equals Long.MAX_VALUE, the unavailability of this servlet is considered permanent.' -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The date and time at which this servlet will become available (in milliseconds since the epoch), or zero if the servlet is available. If this value equals Long.MAX_VALUE, the unavailability of this servlet is considered permanent.) -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@466ba2f4) -2024-09-20 17:47:15.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.216 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.216 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'backgroundProcessorDelay' -2024-09-20 17:47:15.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=backgroundProcessorDelay) -2024-09-20 17:47:15.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The processor delay for this component.' -2024-09-20 17:47:15.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The processor delay for this component.) -2024-09-20 17:47:15.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.218 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@25ee76) -2024-09-20 17:47:15.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'classLoadTime' -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=classLoadTime) -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time taken to load the Servlet class' -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time taken to load the Servlet class) -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@e0cad8f) -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.223 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.223 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'countAllocated' -2024-09-20 17:47:15.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=countAllocated) -2024-09-20 17:47:15.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The count of allocations that are currently active (even if they are for the same instance, as will be true on a non-STM servlet).' -2024-09-20 17:47:15.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The count of allocations that are currently active (even if they are for the same instance, as will be true on a non-STM servlet).) -2024-09-20 17:47:15.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2046ae39) -2024-09-20 17:47:15.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'errorCount' -2024-09-20 17:47:15.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=errorCount) -2024-09-20 17:47:15.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Error count' -2024-09-20 17:47:15.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Error count) -2024-09-20 17:47:15.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.229 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ba1c4c7) -2024-09-20 17:47:15.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.231 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.231 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'loadOnStartup' -2024-09-20 17:47:15.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=loadOnStartup) -2024-09-20 17:47:15.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The load-on-startup order value (negative value means load on first call) for this servlet.' -2024-09-20 17:47:15.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The load-on-startup order value (negative value means load on first call) for this servlet.) -2024-09-20 17:47:15.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.233 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1458cb9b) -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.234 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'loadTime' -2024-09-20 17:47:15.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=loadTime) -2024-09-20 17:47:15.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time taken to load and initialise the Servlet' -2024-09-20 17:47:15.236 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time taken to load and initialise the Servlet) -2024-09-20 17:47:15.236 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:15.236 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:15.236 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.237 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7f536c4a) -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxTime' -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxTime) -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum processing time of a request' -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum processing time of a request) -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6af122ff) -2024-09-20 17:47:15.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.241 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.241 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxInstances' -2024-09-20 17:47:15.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxInstances) -2024-09-20 17:47:15.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum number of STM instances.' -2024-09-20 17:47:15.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum number of STM instances.) -2024-09-20 17:47:15.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.244 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5f43549a) -2024-09-20 17:47:15.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.247 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.248 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minTime' -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minTime) -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Minimum processing time of a request' -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Minimum processing time of a request) -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:15.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.250 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d1548fa) -2024-09-20 17:47:15.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.251 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.252 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'objectName' -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=objectName) -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name of the object' -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name of the object) -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6940442e) -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.256 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.256 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processingTime' -2024-09-20 17:47:15.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processingTime) -2024-09-20 17:47:15.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Total execution time of the servlet's service method' -2024-09-20 17:47:15.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Total execution time of the servlet's service method) -2024-09-20 17:47:15.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:15.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@a457523) -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'requestCount' -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=requestCount) -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of requests processed by this wrapper' -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of requests processed by this wrapper) -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.261 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4fe70775) -2024-09-20 17:47:15.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.263 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.263 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'runAs' -2024-09-20 17:47:15.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=runAs) -2024-09-20 17:47:15.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The run-as identity for this servlet.' -2024-09-20 17:47:15.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The run-as identity for this servlet.) -2024-09-20 17:47:15.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.265 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6812d4eb) -2024-09-20 17:47:15.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.267 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.267 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'servletClass' -2024-09-20 17:47:15.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=servletClass) -2024-09-20 17:47:15.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The run-as identity for this servlet.' -2024-09-20 17:47:15.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The run-as identity for this servlet.) -2024-09-20 17:47:15.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.270 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3188cf3) -2024-09-20 17:47:15.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.273 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.273 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'singleThreadModel' -2024-09-20 17:47:15.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=singleThreadModel) -2024-09-20 17:47:15.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this servlet implement the SingleThreadModel interface?' -2024-09-20 17:47:15.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this servlet implement the SingleThreadModel interface?) -2024-09-20 17:47:15.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.Boolean' -2024-09-20 17:47:15.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.Boolean) -2024-09-20 17:47:15.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:15.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:15.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.278 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@22550dde) -2024-09-20 17:47:15.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.281 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@557e6a4e) -2024-09-20 17:47:15.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.283 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.283 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addInitParameter' -2024-09-20 17:47:15.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addInitParameter) -2024-09-20 17:47:15.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a valve to this Wrapper' -2024-09-20 17:47:15.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a valve to this Wrapper) -2024-09-20 17:47:15.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.286 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.286 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of this initialization parameter to add' -2024-09-20 17:47:15.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of this initialization parameter to add) -2024-09-20 17:47:15.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.287 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2b355986) -2024-09-20 17:47:15.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'value' -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=value) -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Value of this initialization parameter to add' -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Value of this initialization parameter to add) -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6c8d2707) -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@66bcecb5) -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.293 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.293 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.293 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addLifecycleListener' -2024-09-20 17:47:15.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addLifecycleListener) -2024-09-20 17:47:15.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a lifecycle listener to this Wrapper' -2024-09-20 17:47:15.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a lifecycle listener to this Wrapper) -2024-09-20 17:47:15.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.295 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.295 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new lifecycle listener to be added' -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new lifecycle listener to be added) -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4036d636) -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@41ce5edf) -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addMapping' -2024-09-20 17:47:15.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addMapping) -2024-09-20 17:47:15.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a mapping associated with the Wrapper.' -2024-09-20 17:47:15.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a mapping associated with the Wrapper.) -2024-09-20 17:47:15.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'mapping' -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=mapping) -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The new wrapper mapping' -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The new wrapper mapping) -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@447eecfe) -2024-09-20 17:47:15.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@45266980) -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addSecurityReference' -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addSecurityReference) -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new security role reference record to the set of records for this servlet.' -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new security role reference record to the set of records for this servlet.) -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role name used within this servlet' -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role name used within this servlet) -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@33d78074) -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.307 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'link' -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=link) -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role name used within the web application' -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role name used within the web application) -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.309 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5c1877) -2024-09-20 17:47:15.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.310 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.310 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:15.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@33760d9e) -2024-09-20 17:47:15.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addValve' -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addValve) -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a valve to this Wrapper' -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a valve to this Wrapper) -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveType' -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveType) -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the new valve to be added' -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the new valve to be added) -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.314 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@456a1819) -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4a31f4e0) -2024-09-20 17:47:15.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.317 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.317 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findInitParameter' -2024-09-20 17:47:15.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findInitParameter) -2024-09-20 17:47:15.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the value of an initialization parameter' -2024-09-20 17:47:15.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the value of an initialization parameter) -2024-09-20 17:47:15.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:15.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:15.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.320 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.321 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The name of the initialization parameter' -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The name of the initialization parameter) -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2acec271) -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@29d7204b) -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findInitParameters' -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findInitParameters) -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the names of all defined initialization parameters for this servlet.' -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the names of all defined initialization parameters for this servlet.) -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3ce85fb8) -2024-09-20 17:47:15.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.327 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.327 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findMappings' -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findMappings) -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the mappings associated with this wrapper' -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the mappings associated with this wrapper) -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:15.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@79bb2a31) -2024-09-20 17:47:15.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.331 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.331 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findMappingObject' -2024-09-20 17:47:15.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findMappingObject) -2024-09-20 17:47:15.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return an object which may be utilized for mapping to this component' -2024-09-20 17:47:15.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return an object which may be utilized for mapping to this component) -2024-09-20 17:47:15.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'org.apache.catalina.Wrapper' -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=org.apache.catalina.Wrapper) -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@253ab23d) -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.334 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.335 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.336 INFO 22604 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2024-09-20 17:47:15.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findSecurityReference' -2024-09-20 17:47:15.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findSecurityReference) -2024-09-20 17:47:15.336 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'shiroFilterFactoryBean' via factory method to bean named 'securityManager' -2024-09-20 17:47:15.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the security role link for the specified security role reference name.' -2024-09-20 17:47:15.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the security role link for the specified security role reference name.) -2024-09-20 17:47:15.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:15.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:15.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.338 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.338 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Security role reference used within this servlet' -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Security role reference used within this servlet) -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.340 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@357f1ba9) -2024-09-20 17:47:15.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.342 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.343 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.344 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.344 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4b948721) -2024-09-20 17:47:15.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.346 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.347 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findSecurityReferences' -2024-09-20 17:47:15.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findSecurityReferences) -2024-09-20 17:47:15.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the set of security role reference names associated with this servlet' -2024-09-20 17:47:15.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the set of security role reference names associated with this servlet) -2024-09-20 17:47:15.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:15.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:15.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Ljava.lang.String;' -2024-09-20 17:47:15.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Ljava.lang.String;) -2024-09-20 17:47:15.350 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-09-20 17:47:15.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.350 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.350 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.353 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dataSourceInitializerPostProcessor' -2024-09-20 17:47:15.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6bdec6c0) -2024-09-20 17:47:15.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.355 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.355 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.355 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-09-20 17:47:15.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeInitParameter' -2024-09-20 17:47:15.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeInitParameter) -2024-09-20 17:47:15.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove the specified initialization parameter from this servlet.' -2024-09-20 17:47:15.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove the specified initialization parameter from this servlet.) -2024-09-20 17:47:15.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.359 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.359 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the initialization parameter to remove' -2024-09-20 17:47:15.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the initialization parameter to remove) -2024-09-20 17:47:15.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.363 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1b852adc) -2024-09-20 17:47:15.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.366 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.366 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@566ad856) -2024-09-20 17:47:15.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.370 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.370 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.371 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeLifecycleListeners' -2024-09-20 17:47:15.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeLifecycleListeners) -2024-09-20 17:47:15.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Removes lifecycle listeners of given class type from this Wrapper' -2024-09-20 17:47:15.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Removes lifecycle listeners of given class type from this Wrapper) -2024-09-20 17:47:15.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.375 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.375 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'listener' -2024-09-20 17:47:15.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=listener) -2024-09-20 17:47:15.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Type(classname) of the lifecycle listeners to be removed' -2024-09-20 17:47:15.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Type(classname) of the lifecycle listeners to be removed) -2024-09-20 17:47:15.379 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-09-20 17:47:15.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.380 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.380 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-09-20 17:47:15.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3928f035) -2024-09-20 17:47:15.382 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'objectMapperConfigurer' -2024-09-20 17:47:15.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.383 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.384 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.386 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'authorizationAttributeSourceAdvisor' -2024-09-20 17:47:15.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@24ddc916) -2024-09-20 17:47:15.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.388 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.388 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeMapping' -2024-09-20 17:47:15.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeMapping) -2024-09-20 17:47:15.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a mapping associated with the wrapper.' -2024-09-20 17:47:15.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a mapping associated with the wrapper.) -2024-09-20 17:47:15.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.389 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'authorizationAttributeSourceAdvisor' via factory method to bean named 'securityManager' -2024-09-20 17:47:15.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.391 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.391 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'mapping' -2024-09-20 17:47:15.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=mapping) -2024-09-20 17:47:15.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The pattern to remove' -2024-09-20 17:47:15.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The pattern to remove) -2024-09-20 17:47:15.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.395 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@163cc49b) -2024-09-20 17:47:15.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.398 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.399 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@16941662) -2024-09-20 17:47:15.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.408 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.408 INFO 22604 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2024-09-20 17:47:15.408 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeSecurityReference' -2024-09-20 17:47:15.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeSecurityReference) -2024-09-20 17:47:15.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove any security role reference for the specified role name.' -2024-09-20 17:47:15.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove any security role reference for the specified role name.) -2024-09-20 17:47:15.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.411 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-09-20 17:47:15.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.412 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-09-20 17:47:15.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.412 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.414 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:15.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:15.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Security role used within this servlet to be removed' -2024-09-20 17:47:15.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Security role used within this servlet to be removed) -2024-09-20 17:47:15.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.417 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@68c3f5dd) -2024-09-20 17:47:15.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.421 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.421 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@221c14aa) -2024-09-20 17:47:15.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.424 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.424 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeValve' -2024-09-20 17:47:15.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeValve) -2024-09-20 17:47:15.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a valve from this Wrapper' -2024-09-20 17:47:15.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a valve from this Wrapper) -2024-09-20 17:47:15.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.426 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.427 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.427 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'valveName' -2024-09-20 17:47:15.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=valveName) -2024-09-20 17:47:15.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Objectname of the valve to be removed' -2024-09-20 17:47:15.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Objectname of the valve to be removed) -2024-09-20 17:47:15.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.430 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.430 DEBUG 22604 --- [main] .s.a.a.a.ReflectiveAspectJAdvisorFactory : Found AspectJ method: public java.lang.Object com.yf.exam.aspect.DictAspect.doAround(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-09-20 17:47:15.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5274146e) -2024-09-20 17:47:15.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.431 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.431 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@64653f44) -2024-09-20 17:47:15.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.434 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.434 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardWrapper, className=org.apache.catalina.mbeans.ContainerMBean, description=Wrapper that represents an individual servlet definition, group=Wrapper, type=org.apache.catalina.core.StandardWrapper]) -2024-09-20 17:47:15.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.438 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.438 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardWrapperValve' -2024-09-20 17:47:15.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardWrapperValve) -2024-09-20 17:47:15.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that implements the default basic behavior for the StandardWrapper container implementation' -2024-09-20 17:47:15.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that implements the default basic behavior for the StandardWrapper container implementation) -2024-09-20 17:47:15.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:15.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:15.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.core.StandardWrapperValve' -2024-09-20 17:47:15.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.core.StandardWrapperValve) -2024-09-20 17:47:15.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.442 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.442 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:15.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:15.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting?' -2024-09-20 17:47:15.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting?) -2024-09-20 17:47:15.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.447 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@137f4308) -2024-09-20 17:47:15.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.448 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.448 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:15.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5104bc89) -2024-09-20 17:47:15.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.452 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.453 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.457 INFO 22604 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$d0700429] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2024-09-20 17:47:15.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.457 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@232115a3) -2024-09-20 17:47:15.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.461 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.461 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - ' -2024-09-20 17:47:15.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardWrapperValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that implements the default basic behavior for the StandardWrapper container implementation, group=Valve, type=org.apache.catalina.core.StandardWrapperValve]) -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:15.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -' -2024-09-20 17:47:15.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:15.465 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:15.465 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/mbeans-descriptors.xml -2024-09-20 17:47:15.466 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@6ef3919c) -2024-09-20 17:47:15.466 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:15.466 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:15.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:15.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:15.467 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.467 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'Group' -2024-09-20 17:47:15.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=Group) -2024-09-20 17:47:15.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.GroupMBean' -2024-09-20 17:47:15.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.GroupMBean) -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Group from a user database' -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Group from a user database) -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Users' -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Users) -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Group' -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Group) -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.Group' -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.Group) -2024-09-20 17:47:15.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.470 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.470 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'description' -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=description) -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Description of this group' -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Description of this group) -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@77df849) -2024-09-20 17:47:15.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.473 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.474 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'groupname' -2024-09-20 17:47:15.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=groupname) -2024-09-20 17:47:15.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Group name of this group' -2024-09-20 17:47:15.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Group name of this group) -2024-09-20 17:47:15.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.476 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7369fcdb) -2024-09-20 17:47:15.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.478 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.478 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roles' -2024-09-20 17:47:15.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roles) -2024-09-20 17:47:15.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of roles for this group' -2024-09-20 17:47:15.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of roles for this group) -2024-09-20 17:47:15.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.482 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@58ce7318) -2024-09-20 17:47:15.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'users' -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=users) -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of user members of this group' -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of user members of this group) -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2a4376ec) -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addRole' -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addRole) -2024-09-20 17:47:15.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new authorized role for this group' -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new authorized role for this group) -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role to be added' -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role to be added) -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@42946c5d) -2024-09-20 17:47:15.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.491 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.491 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7e27dff0) -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.493 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.493 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeRole' -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeRole) -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an old authorized role for this group' -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an old authorized role for this group) -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.495 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.495 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role to be removed' -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role to be removed) -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@555a259f) -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@641fddce) -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeRoles' -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeRoles) -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove all authorized roles for this group' -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove all authorized roles for this group) -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@588a394) -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=Group, className=org.apache.catalina.mbeans.GroupMBean, description=Group from a user database, group=Group, type=org.apache.catalina.Group]) -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.501 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.502 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'Role' -2024-09-20 17:47:15.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=Role) -2024-09-20 17:47:15.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.RoleMBean' -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.RoleMBean) -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Security role from a user database' -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Security role from a user database) -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Users' -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Users) -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Role' -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Role) -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.Role' -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.Role) -2024-09-20 17:47:15.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'description' -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=description) -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Description of this role' -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Description of this role) -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.505 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4590248a) -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'rolename' -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=rolename) -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Role name of this role' -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Role name of this role) -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@41e2977a) -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - ' -2024-09-20 17:47:15.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=Role, className=org.apache.catalina.mbeans.RoleMBean, description=Security role from a user database, group=Role, type=org.apache.catalina.Role]) -2024-09-20 17:47:15.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.511 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.511 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'User' -2024-09-20 17:47:15.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=User) -2024-09-20 17:47:15.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.UserMBean' -2024-09-20 17:47:15.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.UserMBean) -2024-09-20 17:47:15.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'User from a user database' -2024-09-20 17:47:15.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=User from a user database) -2024-09-20 17:47:15.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Users' -2024-09-20 17:47:15.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Users) -2024-09-20 17:47:15.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'User' -2024-09-20 17:47:15.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=User) -2024-09-20 17:47:15.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.User' -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.User) -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'fullName' -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=fullName) -2024-09-20 17:47:15.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Full name of this user' -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Full name of this user) -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5b89d325) -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'groups' -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=groups) -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of groups this user is a member of' -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of groups this user is a member of) -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1b5d4fc3) -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.518 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'password' -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=password) -2024-09-20 17:47:15.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Password of this user' -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Password of this user) -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5fad8c56) -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roles' -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roles) -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of roles for this user' -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of roles for this user) -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@a21999e) -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'username' -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=username) -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'User name of this user' -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=User name of this user) -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1f246304) -2024-09-20 17:47:15.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.526 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addGroup' -2024-09-20 17:47:15.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addGroup) -2024-09-20 17:47:15.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new group membership for this user' -2024-09-20 17:47:15.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new group membership for this user) -2024-09-20 17:47:15.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.530 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.530 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.530 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'transactionAttributeSource' -2024-09-20 17:47:15.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'groupname' -2024-09-20 17:47:15.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=groupname) -2024-09-20 17:47:15.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Group name of the new group' -2024-09-20 17:47:15.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Group name of the new group) -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6ef60474) -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5d0afac0) -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.534 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.534 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addRole' -2024-09-20 17:47:15.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addRole) -2024-09-20 17:47:15.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new authorized role for this user' -2024-09-20 17:47:15.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new authorized role for this user) -2024-09-20 17:47:15.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.536 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'transactionInterceptor' -2024-09-20 17:47:15.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.537 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.537 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:15.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:15.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role to be added' -2024-09-20 17:47:15.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role to be added) -2024-09-20 17:47:15.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.540 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5b617596) -2024-09-20 17:47:15.542 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'shiroFilterFactoryBean' -2024-09-20 17:47:15.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.543 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.544 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@67e111bd) -2024-09-20 17:47:15.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.547 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.548 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.549 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-09-20 17:47:15.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeGroup' -2024-09-20 17:47:15.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeGroup) -2024-09-20 17:47:15.550 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-09-20 17:47:15.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an old group membership for this user' -2024-09-20 17:47:15.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an old group membership for this user) -2024-09-20 17:47:15.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.551 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'shiroEventBusAwareBeanPostProcessor' -2024-09-20 17:47:15.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.551 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' -2024-09-20 17:47:15.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.552 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.552 INFO 22604 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$e388e1d9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2024-09-20 17:47:15.552 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'groupname' -2024-09-20 17:47:15.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=groupname) -2024-09-20 17:47:15.555 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Group name of the old group' -2024-09-20 17:47:15.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Group name of the old group) -2024-09-20 17:47:15.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.557 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.557 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.558 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'eventBus' -2024-09-20 17:47:15.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@39ea6c91) -2024-09-20 17:47:15.558 INFO 22604 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) -2024-09-20 17:47:15.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.558 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.559 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.559 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.559 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.559 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.559 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@333c5d96) -2024-09-20 17:47:15.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.563 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.563 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.563 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.563 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.564 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeGroups' -2024-09-20 17:47:15.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeGroups) -2024-09-20 17:47:15.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove all group memberships for this user' -2024-09-20 17:47:15.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove all group memberships for this user) -2024-09-20 17:47:15.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.566 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.566 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.567 DEBUG 22604 --- [main] o.s.u.c.s.UiApplicationContextUtils : Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@35293c05] -2024-09-20 17:47:15.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@632143a2) -2024-09-20 17:47:15.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.568 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-09-20 17:47:15.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.568 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.568 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-09-20 17:47:15.568 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeRole' -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeRole) -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove an old authorized role for this user' -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove an old authorized role for this user) -2024-09-20 17:47:15.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.570 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.571 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.571 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'role' -2024-09-20 17:47:15.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=role) -2024-09-20 17:47:15.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role to be removed' -2024-09-20 17:47:15.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role to be removed) -2024-09-20 17:47:15.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.575 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.575 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@c22da82) -2024-09-20 17:47:15.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.579 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.579 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6646b173) -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.580 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeRoles' -2024-09-20 17:47:15.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeRoles) -2024-09-20 17:47:15.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove all authorized roles for this user' -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove all authorized roles for this user) -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@37c790c0) -2024-09-20 17:47:15.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.584 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.584 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=User, className=org.apache.catalina.mbeans.UserMBean, description=User from a user database, group=User, type=org.apache.catalina.User]) -2024-09-20 17:47:15.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.586 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:15.587 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:15.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:15.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - -' -2024-09-20 17:47:15.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:15.587 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:15.588 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/deploy/mbeans-descriptors.xml -2024-09-20 17:47:15.589 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@5e92e9c9) -2024-09-20 17:47:15.589 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:15.589 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:15.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:15.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:15.590 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.590 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'NamingResourcesImpl' -2024-09-20 17:47:15.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=NamingResourcesImpl) -2024-09-20 17:47:15.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.NamingResourcesMBean' -2024-09-20 17:47:15.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.NamingResourcesMBean) -2024-09-20 17:47:15.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Holds and manages the naming resources defined in the J2EE Enterprise Naming Context and their associated JNDI context' -2024-09-20 17:47:15.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Holds and manages the naming resources defined in the J2EE Enterprise Naming Context and their associated JNDI context) -2024-09-20 17:47:15.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Resources' -2024-09-20 17:47:15.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Resources) -2024-09-20 17:47:15.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.deploy.NamingResourcesImpl' -2024-09-20 17:47:15.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.deploy.NamingResourcesImpl) -2024-09-20 17:47:15.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.592 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.593 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'container' -2024-09-20 17:47:15.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=container) -2024-09-20 17:47:15.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The container with which the naming resources are associated.' -2024-09-20 17:47:15.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The container with which the naming resources are associated.) -2024-09-20 17:47:15.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.Object' -2024-09-20 17:47:15.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.Object) -2024-09-20 17:47:15.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@447ece53) -2024-09-20 17:47:15.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.597 DEBUG 22604 --- [main] o.a.catalina.core.AprLifecycleListener : The APR based Apache Tomcat Native library could not be found using names [tcnative-1, libtcnative-1] on the java.library.path [C:\Program Files (x86)\Java\jdk-11.0.0.1\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files (x86)\Java\jdk-11.0.0.1\bin;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Azure Data Studio\bin;C:\malatb2024\bin;C:\Program Files\MATLAB\R2018b\bin;C:\Program Files\Git\cmd;S:\nodejs\;C:\Program Files\MySQL\MySQL Shell 8.0\bin\;C:\Users\\AppData\Local\Microsoft\WindowsApps;C:\Ϸļ\QQGameTempest\Hall.57938\;C:\Program Files\Azure Data Studio\bin;S:\intellij idea\IntelliJ IDEA 2023.3.6\bin;;S:\intellij\IntelliJ IDEA Community Edition 2024.2.1\bin;;C:\Users\\AppData\Roaming\npm;.]. The errors reported were [Can't load library: S:\yfexam-exam-main\docs\а\bin\tcnative-1.dll, Can't load library: S:\yfexam-exam-main\docs\а\bin\libtcnative-1.dll, no tcnative-1 in java.library.path: [C:\Program Files (x86)\Java\jdk-11.0.0.1\bin, C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\Program Files (x86)\Java\jdk-11.0.0.1\bin, C:\Program Files (x86)\Common Files\Oracle\Java\javapath, C:\Program Files (x86)\VMware\VMware Workstation\bin\, C:\windows\system32, C:\windows, C:\windows\System32\Wbem, C:\windows\System32\WindowsPowerShell\v1.0\, C:\windows\System32\OpenSSH\, C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common, C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR, C:\WINDOWS\system32, C:\WINDOWS, C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, C:\WINDOWS\System32\OpenSSH\, C:\Program Files\Azure Data Studio\bin, C:\malatb2024\bin, C:\Program Files\MATLAB\R2018b\bin, C:\Program Files\Git\cmd, S:\nodejs\, C:\Program Files\MySQL\MySQL Shell 8.0\bin\, C:\Users\\AppData\Local\Microsoft\WindowsApps, C:\Ϸļ\QQGameTempest\Hall.57938\, C:\Program Files\Azure Data Studio\bin, S:\intellij idea\IntelliJ IDEA 2023.3.6\bin, ., S:\intellij\IntelliJ IDEA Community Edition 2024.2.1\bin, ., C:\Users\\AppData\Roaming\npm, .], no libtcnative-1 in java.library.path: [C:\Program Files (x86)\Java\jdk-11.0.0.1\bin, C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\Program Files (x86)\Java\jdk-11.0.0.1\bin, C:\Program Files (x86)\Common Files\Oracle\Java\javapath, C:\Program Files (x86)\VMware\VMware Workstation\bin\, C:\windows\system32, C:\windows, C:\windows\System32\Wbem, C:\windows\System32\WindowsPowerShell\v1.0\, C:\windows\System32\OpenSSH\, C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common, C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR, C:\WINDOWS\system32, C:\WINDOWS, C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, C:\WINDOWS\System32\OpenSSH\, C:\Program Files\Azure Data Studio\bin, C:\malatb2024\bin, C:\Program Files\MATLAB\R2018b\bin, C:\Program Files\Git\cmd, S:\nodejs\, C:\Program Files\MySQL\MySQL Shell 8.0\bin\, C:\Users\\AppData\Local\Microsoft\WindowsApps, C:\Ϸļ\QQGameTempest\Hall.57938\, C:\Program Files\Azure Data Studio\bin, S:\intellij idea\IntelliJ IDEA 2023.3.6\bin, ., S:\intellij\IntelliJ IDEA Community Edition 2024.2.1\bin, ., C:\Users\\AppData\Roaming\npm, .]] - -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: S:\yfexam-exam-main\docs\а\bin\tcnative-1.dll, Can't load library: S:\yfexam-exam-main\docs\а\bin\libtcnative-1.dll, no tcnative-1 in java.library.path: [C:\Program Files (x86)\Java\jdk-11.0.0.1\bin, C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\Program Files (x86)\Java\jdk-11.0.0.1\bin, C:\Program Files (x86)\Common Files\Oracle\Java\javapath, C:\Program Files (x86)\VMware\VMware Workstation\bin\, C:\windows\system32, C:\windows, C:\windows\System32\Wbem, C:\windows\System32\WindowsPowerShell\v1.0\, C:\windows\System32\OpenSSH\, C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common, C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR, C:\WINDOWS\system32, C:\WINDOWS, C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, C:\WINDOWS\System32\OpenSSH\, C:\Program Files\Azure Data Studio\bin, C:\malatb2024\bin, C:\Program Files\MATLAB\R2018b\bin, C:\Program Files\Git\cmd, S:\nodejs\, C:\Program Files\MySQL\MySQL Shell 8.0\bin\, C:\Users\\AppData\Local\Microsoft\WindowsApps, C:\Ϸļ\QQGameTempest\Hall.57938\, C:\Program Files\Azure Data Studio\bin, S:\intellij idea\IntelliJ IDEA 2023.3.6\bin, ., S:\intellij\IntelliJ IDEA Community Edition 2024.2.1\bin, ., C:\Users\\AppData\Roaming\npm, .], no libtcnative-1 in java.library.path: [C:\Program Files (x86)\Java\jdk-11.0.0.1\bin, C:\WINDOWS\Sun\Java\bin, C:\WINDOWS\system32, C:\WINDOWS, C:\Program Files (x86)\Java\jdk-11.0.0.1\bin, C:\Program Files (x86)\Common Files\Oracle\Java\javapath, C:\Program Files (x86)\VMware\VMware Workstation\bin\, C:\windows\system32, C:\windows, C:\windows\System32\Wbem, C:\windows\System32\WindowsPowerShell\v1.0\, C:\windows\System32\OpenSSH\, C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common, C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR, C:\WINDOWS\system32, C:\WINDOWS, C:\WINDOWS\System32\Wbem, C:\WINDOWS\System32\WindowsPowerShell\v1.0\, C:\WINDOWS\System32\OpenSSH\, C:\Program Files\Azure Data Studio\bin, C:\malatb2024\bin, C:\Program Files\MATLAB\R2018b\bin, C:\Program Files\Git\cmd, S:\nodejs\, C:\Program Files\MySQL\MySQL Shell 8.0\bin\, C:\Users\\AppData\Local\Microsoft\WindowsApps, C:\Ϸļ\QQGameTempest\Hall.57938\, C:\Program Files\Azure Data Studio\bin, S:\intellij idea\IntelliJ IDEA 2023.3.6\bin, ., S:\intellij\IntelliJ IDEA Community Edition 2024.2.1\bin, ., C:\Users\\AppData\Roaming\npm, .] - at org.apache.tomcat.jni.Library.(Library.java:102) ~[tomcat-embed-core-9.0.17.jar!/:9.0.17] - at org.apache.tomcat.jni.Library.initialize(Library.java:206) ~[tomcat-embed-core-9.0.17.jar!/:9.0.17] - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:198) ~[tomcat-embed-core-9.0.17.jar!/:9.0.17] - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:107) ~[tomcat-embed-core-9.0.17.jar!/:9.0.17] - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultLifecycleListeners(TomcatServletWebServerFactory.java:159) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.(TomcatServletWebServerFactory.java:114) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:62) ~[spring-boot-autoconfigure-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat$$EnhancerBySpringCGLIB$$3af27613.CGLIB$tomcatServletWebServerFactory$0() ~[spring-boot-autoconfigure-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat$$EnhancerBySpringCGLIB$$3af27613$$FastClassBySpringCGLIB$$3a5925cf.invoke() ~[spring-boot-autoconfigure-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244) ~[spring-core-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:363) ~[spring-context-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat$$EnhancerBySpringCGLIB$$3af27613.tomcatServletWebServerFactory() ~[spring-boot-autoconfigure-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na] - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na] - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:622) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:456) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1321) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1160) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204) ~[spring-beans-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:216) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:180) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:154) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:543) ~[spring-context-5.1.6.RELEASE.jar!/:5.1.6.RELEASE] - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:142) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:775) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:316) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1260) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1248) ~[spring-boot-2.1.4.RELEASE.jar!/:2.1.4.RELEASE] - at com.yf.exam.ExamApplication.main(ExamApplication.java:27) ~[classes!/:1.0] - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na] - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na] - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na] - at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48) ~[exam-api.jar:1.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:87) ~[exam-api.jar:1.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:50) ~[exam-api.jar:1.0] - at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:51) ~[exam-api.jar:1.0] - -2024-09-20 17:47:15.598 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'environments' -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=environments) -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of the set of defined environment entries for this web application' -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of the set of defined environment entries for this web application) -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@17603286) -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.602 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.602 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'resources' -2024-09-20 17:47:15.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=resources) -2024-09-20 17:47:15.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of all the defined resource references for this application.' -2024-09-20 17:47:15.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of all the defined resource references for this application.) -2024-09-20 17:47:15.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1caae13a) -2024-09-20 17:47:15.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.606 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.606 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.606 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.607 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'resourceLinks' -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=resourceLinks) -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of all the defined resource link references for this application.' -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of all the defined resource link references for this application.) -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.607 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.608 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@553f8fc7) -2024-09-20 17:47:15.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.609 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.610 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addEnvironment' -2024-09-20 17:47:15.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addEnvironment) -2024-09-20 17:47:15.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add an environment entry for this web application' -2024-09-20 17:47:15.611 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-09-20 17:47:15.611 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-09-20 17:47:15.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add an environment entry for this web application) -2024-09-20 17:47:15.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.613 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.613 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.613 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'envName' -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=envName) -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New environment entry name' -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New environment entry name) -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.616 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6701cf65) -2024-09-20 17:47:15.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.618 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.618 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:15.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:15.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New environment entry type' -2024-09-20 17:47:15.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New environment entry type) -2024-09-20 17:47:15.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.622 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@71e32501) -2024-09-20 17:47:15.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.624 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.625 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.625 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'value' -2024-09-20 17:47:15.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=value) -2024-09-20 17:47:15.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New environment entry value' -2024-09-20 17:47:15.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New environment entry value) -2024-09-20 17:47:15.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.629 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.629 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3a8ba936) -2024-09-20 17:47:15.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.632 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.632 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:15.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.633 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-09-20 17:47:15.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@13e35817) -2024-09-20 17:47:15.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.635 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.637 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addResource' -2024-09-20 17:47:15.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addResource) -2024-09-20 17:47:15.639 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-09-20 17:47:15.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a resource reference for this web application' -2024-09-20 17:47:15.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a resource reference for this web application) -2024-09-20 17:47:15.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.640 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-09-20 17:47:15.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.641 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.641 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'resourceName' -2024-09-20 17:47:15.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=resourceName) -2024-09-20 17:47:15.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New resource reference name' -2024-09-20 17:47:15.643 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New resource reference name) -2024-09-20 17:47:15.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.644 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-09-20 17:47:15.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.645 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-09-20 17:47:15.645 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.645 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7a70c7e9) -2024-09-20 17:47:15.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.648 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-09-20 17:47:15.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.648 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-09-20 17:47:15.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.648 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.649 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:15.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:15.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New resource reference type' -2024-09-20 17:47:15.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New resource reference type) -2024-09-20 17:47:15.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.652 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.652 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@12533e8b) -2024-09-20 17:47:15.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.655 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.655 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:15.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.656 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-09-20 17:47:15.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.657 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-09-20 17:47:15.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@75f6e7ee) -2024-09-20 17:47:15.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.658 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration$$EnhancerBySpringCGLIB$$a3c4bacb] - unable to determine constructor/method parameter names -2024-09-20 17:47:15.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.658 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.659 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.660 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.660 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.660 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' -2024-09-20 17:47:15.660 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addResourceLink' -2024-09-20 17:47:15.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addResourceLink) -2024-09-20 17:47:15.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a resource link reference for this web application' -2024-09-20 17:47:15.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a resource link reference for this web application) -2024-09-20 17:47:15.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.663 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' -2024-09-20 17:47:15.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.663 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.663 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'resourceLinkName' -2024-09-20 17:47:15.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=resourceLinkName) -2024-09-20 17:47:15.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New resource reference name' -2024-09-20 17:47:15.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New resource reference name) -2024-09-20 17:47:15.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.666 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.667 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.667 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.667 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.669 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7cdc2aa7) -2024-09-20 17:47:15.669 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.669 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.670 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.670 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.670 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.670 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.670 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.670 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.670 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'type' -2024-09-20 17:47:15.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=type) -2024-09-20 17:47:15.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New resource reference type' -2024-09-20 17:47:15.672 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New resource reference type) -2024-09-20 17:47:15.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.673 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@efe55a) -2024-09-20 17:47:15.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.675 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.676 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.676 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:15.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@bc324aa) -2024-09-20 17:47:15.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.679 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.679 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.679 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.680 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeEnvironment' -2024-09-20 17:47:15.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeEnvironment) -2024-09-20 17:47:15.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove any environment entry with the specified name' -2024-09-20 17:47:15.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove any environment entry with the specified name) -2024-09-20 17:47:15.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.682 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.682 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'envName' -2024-09-20 17:47:15.684 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=envName) -2024-09-20 17:47:15.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the environment entry to remove' -2024-09-20 17:47:15.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the environment entry to remove) -2024-09-20 17:47:15.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.686 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.689 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorPageCustomizer' -2024-09-20 17:47:15.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@49c86bab) -2024-09-20 17:47:15.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.689 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-09-20 17:47:15.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.690 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.690 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$$EnhancerBySpringCGLIB$$fc1c09ae] - unable to determine constructor/method parameter names -2024-09-20 17:47:15.690 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@54dcf927) -2024-09-20 17:47:15.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.692 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-09-20 17:47:15.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.693 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-09-20 17:47:15.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.693 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.693 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.694 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration$$EnhancerBySpringCGLIB$$82772899] - unable to determine constructor/method parameter names -2024-09-20 17:47:15.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.695 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeResource' -2024-09-20 17:47:15.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeResource) -2024-09-20 17:47:15.696 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-09-20 17:47:15.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove any resource reference with the specified name' -2024-09-20 17:47:15.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove any resource reference with the specified name) -2024-09-20 17:47:15.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.697 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.697 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'resourceName' -2024-09-20 17:47:15.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=resourceName) -2024-09-20 17:47:15.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the resource reference to remove' -2024-09-20 17:47:15.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the resource reference to remove) -2024-09-20 17:47:15.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.700 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-09-20 17:47:15.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.700 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.701 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.701 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'multipartConfigElement' -2024-09-20 17:47:15.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.701 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'multipartConfig' -2024-09-20 17:47:15.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.702 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2b6613d3) -2024-09-20 17:47:15.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.704 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.704 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@39129461) -2024-09-20 17:47:15.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.706 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.706 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dispatcherServlet' -2024-09-20 17:47:15.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.707 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-09-20 17:47:15.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.707 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.707 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.707 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration$$EnhancerBySpringCGLIB$$206f93f2] - unable to determine constructor/method parameter names -2024-09-20 17:47:15.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeResourceLink' -2024-09-20 17:47:15.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeResourceLink) -2024-09-20 17:47:15.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove any resource link reference with the specified name' -2024-09-20 17:47:15.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove any resource link reference with the specified name) -2024-09-20 17:47:15.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.711 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.711 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:15.711 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' via constructor to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' -2024-09-20 17:47:15.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.711 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-09-20 17:47:15.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:15.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'resourceLinkName' -2024-09-20 17:47:15.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=resourceLinkName) -2024-09-20 17:47:15.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Name of the resource reference to remove' -2024-09-20 17:47:15.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Name of the resource reference to remove) -2024-09-20 17:47:15.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:15.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.714 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:15.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:15.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:15.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@338d35db) -2024-09-20 17:47:15.716 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:15.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:15.718 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.719 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:15.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@abe74c) -2024-09-20 17:47:15.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.722 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.722 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.722 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=NamingResourcesImpl, className=org.apache.catalina.mbeans.NamingResourcesMBean, description=Holds and manages the naming resources defined in the J2EE Enterprise Naming Context and their associated JNDI context, group=Resources, type=org.apache.catalina.deploy.NamingResourcesImpl]) -2024-09-20 17:47:15.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.724 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - -) -2024-09-20 17:47:15.724 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:15.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:15.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - -' -2024-09-20 17:47:15.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:15.725 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:15.726 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/loader/mbeans-descriptors.xml -2024-09-20 17:47:15.726 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@1bc89401) -2024-09-20 17:47:15.727 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:15.727 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:15.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:15.728 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:15.728 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.728 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.730 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.730 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.730 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'WebappLoader' -2024-09-20 17:47:15.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=WebappLoader) -2024-09-20 17:47:15.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Classloader implementation which is specialized for handling web applications' -2024-09-20 17:47:15.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Classloader implementation which is specialized for handling web applications) -2024-09-20 17:47:15.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Loader' -2024-09-20 17:47:15.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Loader) -2024-09-20 17:47:15.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.loader.WebappLoader' -2024-09-20 17:47:15.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.loader.WebappLoader) -2024-09-20 17:47:15.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.734 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.734 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:15.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:15.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:15.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:15.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.738 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.738 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@36d4aa85) -2024-09-20 17:47:15.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.742 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.742 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.743 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.743 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.743 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.743 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'delegate' -2024-09-20 17:47:15.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=delegate) -2024-09-20 17:47:15.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'follow standard delegation model' flag that will be used to configure our ClassLoader' -2024-09-20 17:47:15.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'follow standard delegation model' flag that will be used to configure our ClassLoader) -2024-09-20 17:47:15.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.746 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6cad6269) -2024-09-20 17:47:15.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.750 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.750 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'reloadable' -2024-09-20 17:47:15.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=reloadable) -2024-09-20 17:47:15.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The reloadable flag for this Loader' -2024-09-20 17:47:15.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The reloadable flag for this Loader) -2024-09-20 17:47:15.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.754 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@33637937) -2024-09-20 17:47:15.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.757 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.757 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.759 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.761 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-09-20 17:47:15.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.762 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6cd48bc6) -2024-09-20 17:47:15.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.765 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.765 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.765 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.766 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'loaderRepositories' -2024-09-20 17:47:15.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=loaderRepositories) -2024-09-20 17:47:15.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Repositories set in the real loader' -2024-09-20 17:47:15.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Repositories set in the real loader) -2024-09-20 17:47:15.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:15.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:15.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.770 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.770 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.770 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7fc7945b) -2024-09-20 17:47:15.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.774 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.775 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.776 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'loaderRepositoriesString' -2024-09-20 17:47:15.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=loaderRepositoriesString) -2024-09-20 17:47:15.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Repositories set in the real loader' -2024-09-20 17:47:15.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Repositories set in the real loader) -2024-09-20 17:47:15.778 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-09-20 17:47:15.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.778 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'dispatcherServletRegistration' -2024-09-20 17:47:15.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.779 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.780 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-09-20 17:47:15.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.781 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-09-20 17:47:15.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@787e0fe0) -2024-09-20 17:47:15.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.782 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration$$EnhancerBySpringCGLIB$$10b0de4e] - unable to determine constructor/method parameter names -2024-09-20 17:47:15.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.783 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.783 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.784 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'toString' -2024-09-20 17:47:15.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=toString) -2024-09-20 17:47:15.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Info about the loader' -2024-09-20 17:47:15.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Info about the loader) -2024-09-20 17:47:15.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:15.786 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' -2024-09-20 17:47:15.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:15.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'String' -2024-09-20 17:47:15.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=String) -2024-09-20 17:47:15.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.788 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.788 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:15.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@50fc6b19) -2024-09-20 17:47:15.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.791 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.792 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.792 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd' -2024-09-20 17:47:15.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.793 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' -2024-09-20 17:47:15.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=WebappLoader, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Classloader implementation which is specialized for handling web applications, group=Loader, type=org.apache.catalina.loader.WebappLoader]) -2024-09-20 17:47:15.794 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.796 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:15.796 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'WebappClassLoader' -2024-09-20 17:47:15.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=WebappClassLoader) -2024-09-20 17:47:15.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Classloader implementation which is specialized for handling web applications' -2024-09-20 17:47:15.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Classloader implementation which is specialized for handling web applications) -2024-09-20 17:47:15.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Loader' -2024-09-20 17:47:15.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Loader) -2024-09-20 17:47:15.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.loader.WebappClassLoader' -2024-09-20 17:47:15.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.loader.WebappClassLoader) -2024-09-20 17:47:15.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.801 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.802 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:15.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:15.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:15.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:15.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.806 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@183e507b) -2024-09-20 17:47:15.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.808 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.808 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'contextName' -2024-09-20 17:47:15.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=contextName) -2024-09-20 17:47:15.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name of the webapp context' -2024-09-20 17:47:15.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name of the webapp context) -2024-09-20 17:47:15.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.814 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5b187a6b) -2024-09-20 17:47:15.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.817 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.817 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.817 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'delegate' -2024-09-20 17:47:15.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=delegate) -2024-09-20 17:47:15.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'follow standard delegation model' flag that will be used to configure our ClassLoader' -2024-09-20 17:47:15.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'follow standard delegation model' flag that will be used to configure our ClassLoader) -2024-09-20 17:47:15.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.821 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@53917fe7) -2024-09-20 17:47:15.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.824 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.825 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.830 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.830 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6086622f) -2024-09-20 17:47:15.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.833 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.833 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'URLs' -2024-09-20 17:47:15.835 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=URLs) -2024-09-20 17:47:15.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The URLs of this loader' -2024-09-20 17:47:15.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The URLs of this loader) -2024-09-20 17:47:15.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.net.URL;' -2024-09-20 17:47:15.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.net.URL;) -2024-09-20 17:47:15.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.837 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@ad15bcc) -2024-09-20 17:47:15.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.841 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.841 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - ' -2024-09-20 17:47:15.841 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=WebappClassLoader, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Classloader implementation which is specialized for handling web applications, group=Loader, type=org.apache.catalina.loader.WebappClassLoader]) -2024-09-20 17:47:15.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.843 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:15.844 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ParallelWebappClassLoader' -2024-09-20 17:47:15.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ParallelWebappClassLoader) -2024-09-20 17:47:15.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Classloader implementation which is specialized for handling web applications and is capable of loading classes in parallel' -2024-09-20 17:47:15.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Classloader implementation which is specialized for handling web applications and is capable of loading classes in parallel) -2024-09-20 17:47:15.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Loader' -2024-09-20 17:47:15.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Loader) -2024-09-20 17:47:15.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.loader.ParallelWebappClassLoader' -2024-09-20 17:47:15.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.loader.ParallelWebappClassLoader) -2024-09-20 17:47:15.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.848 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.848 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.848 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:15.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:15.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:15.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:15.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.851 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1282a3df) -2024-09-20 17:47:15.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.855 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.855 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'contextName' -2024-09-20 17:47:15.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=contextName) -2024-09-20 17:47:15.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Name of the webapp context' -2024-09-20 17:47:15.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Name of the webapp context) -2024-09-20 17:47:15.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.858 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4ab4882f) -2024-09-20 17:47:15.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.861 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.862 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'delegate' -2024-09-20 17:47:15.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=delegate) -2024-09-20 17:47:15.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'follow standard delegation model' flag that will be used to configure our ClassLoader' -2024-09-20 17:47:15.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'follow standard delegation model' flag that will be used to configure our ClassLoader) -2024-09-20 17:47:15.863 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.864 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@19700c4c) -2024-09-20 17:47:15.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.866 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.866 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.868 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@197f3b95) -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.871 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.871 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'URLs' -2024-09-20 17:47:15.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=URLs) -2024-09-20 17:47:15.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The URLs of this loader' -2024-09-20 17:47:15.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The URLs of this loader) -2024-09-20 17:47:15.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.net.URL;' -2024-09-20 17:47:15.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.net.URL;) -2024-09-20 17:47:15.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.874 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1ee4ff3e) -2024-09-20 17:47:15.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.875 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.876 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - ' -2024-09-20 17:47:15.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ParallelWebappClassLoader, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Classloader implementation which is specialized for handling web applications and is capable of loading classes in parallel, group=Loader, type=org.apache.catalina.loader.ParallelWebappClassLoader]) -2024-09-20 17:47:15.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.878 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( -) -2024-09-20 17:47:15.878 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:15.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:15.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - -' -2024-09-20 17:47:15.879 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:15.879 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:15.879 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/realm/mbeans-descriptors.xml -2024-09-20 17:47:15.879 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@70fff93d) -2024-09-20 17:47:15.880 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:15.881 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:15.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:15.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:15.881 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.881 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.882 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol port=8101) -2024-09-20 17:47:15.882 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'DataSourceRealm' -2024-09-20 17:47:15.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=DataSourceRealm) -2024-09-20 17:47:15.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ClassNameMBean' -2024-09-20 17:47:15.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ClassNameMBean) -2024-09-20 17:47:15.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Implementation of Realm that works with any JNDI configured DataSource' -2024-09-20 17:47:15.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Implementation of Realm that works with any JNDI configured DataSource) -2024-09-20 17:47:15.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Realm' -2024-09-20 17:47:15.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Realm) -2024-09-20 17:47:15.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.realm.DataSourceRealm' -2024-09-20 17:47:15.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.realm.DataSourceRealm) -2024-09-20 17:47:15.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.886 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.886 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allRolesMode' -2024-09-20 17:47:15.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allRolesMode) -2024-09-20 17:47:15.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The all roles mode.' -2024-09-20 17:47:15.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The all roles mode.) -2024-09-20 17:47:15.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.888 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@69749902) -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.890 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:15.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:15.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:15.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:15.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.894 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@937a42a) -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.895 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'dataSourceName' -2024-09-20 17:47:15.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=dataSourceName) -2024-09-20 17:47:15.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The JNDI named JDBC DataSource for your database' -2024-09-20 17:47:15.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The JNDI named JDBC DataSource for your database) -2024-09-20 17:47:15.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.898 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.898 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3013a73d) -2024-09-20 17:47:15.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.901 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.901 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'localDataSource' -2024-09-20 17:47:15.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=localDataSource) -2024-09-20 17:47:15.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Configures if the DataSource is local to the webapp' -2024-09-20 17:47:15.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Configures if the DataSource is local to the webapp) -2024-09-20 17:47:15.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.903 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3f2a9613) -2024-09-20 17:47:15.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.905 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.905 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realmPath' -2024-09-20 17:47:15.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realmPath) -2024-09-20 17:47:15.907 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The realm path' -2024-09-20 17:47:15.907 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The realm path) -2024-09-20 17:47:15.907 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.907 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.907 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.907 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.907 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@725bb47d) -2024-09-20 17:47:15.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.909 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.909 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.911 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleNameCol' -2024-09-20 17:47:15.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleNameCol) -2024-09-20 17:47:15.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The column in the user role table that names a role' -2024-09-20 17:47:15.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The column in the user role table that names a role) -2024-09-20 17:47:15.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.913 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@467958e8) -2024-09-20 17:47:15.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.914 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.914 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:15.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:15.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:15.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:15.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.918 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6b7e3555) -2024-09-20 17:47:15.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.920 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.920 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userCredCol' -2024-09-20 17:47:15.921 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userCredCol) -2024-09-20 17:47:15.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The column in the user table that holds the user's credentials' -2024-09-20 17:47:15.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The column in the user table that holds the user's credentials) -2024-09-20 17:47:15.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.924 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@fac27) -2024-09-20 17:47:15.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.926 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.926 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userNameCol' -2024-09-20 17:47:15.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userNameCol) -2024-09-20 17:47:15.928 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The column in the user table that holds the user's username' -2024-09-20 17:47:15.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The column in the user table that holds the user's username) -2024-09-20 17:47:15.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.929 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2f581807) -2024-09-20 17:47:15.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userRoleTable' -2024-09-20 17:47:15.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userRoleTable) -2024-09-20 17:47:15.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The table that holds the relation between user's and roles' -2024-09-20 17:47:15.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The table that holds the relation between user's and roles) -2024-09-20 17:47:15.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.934 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@236abb1c) -2024-09-20 17:47:15.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.936 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.937 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userTable' -2024-09-20 17:47:15.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userTable) -2024-09-20 17:47:15.938 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The table that holds user data' -2024-09-20 17:47:15.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The table that holds user data) -2024-09-20 17:47:15.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.940 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3924e6b9) -2024-09-20 17:47:15.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.942 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.943 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validate' -2024-09-20 17:47:15.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validate) -2024-09-20 17:47:15.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'validate certificate chains' flag.' -2024-09-20 17:47:15.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'validate certificate chains' flag.) -2024-09-20 17:47:15.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:15.945 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:15.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.946 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@44b71b2e) -2024-09-20 17:47:15.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.950 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:15.950 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.950 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:15.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:15.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:15.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:15.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.954 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2bc0bb9f) -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:15.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:15.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:15.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:15.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.957 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5d8457a0) -2024-09-20 17:47:15.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.959 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.959 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:15.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:15.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:15.961 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:15.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.962 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@438b7387) -2024-09-20 17:47:15.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.967 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:15.968 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:15.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:15.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:15.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:15.970 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol bindOnInit=false) -2024-09-20 17:47:15.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:15.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:15.971 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint bindOnInit=false) -2024-09-20 17:47:15.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:15.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:15.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:15.971 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:15.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.972 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:15.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:15.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:15.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3f996eb3) -2024-09-20 17:47:15.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:15.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:15.975 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.975 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:15.975 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol maxPostSize=2097152) -2024-09-20 17:47:15.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.975 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint maxPostSize=2097152) -2024-09-20 17:47:15.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:15.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=DataSourceRealm, className=org.apache.catalina.mbeans.ClassNameMBean, description=Implementation of Realm that works with any JNDI configured DataSource, group=Realm, type=org.apache.catalina.realm.DataSourceRealm]) -2024-09-20 17:47:15.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:15.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.978 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.978 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:15.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:15.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:15.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:15.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:15.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'JAASRealm' -2024-09-20 17:47:15.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=JAASRealm) -2024-09-20 17:47:15.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Implementation of Realm that authenticates users via the Java Authentication and Authorization Service (JAAS)' -2024-09-20 17:47:15.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Implementation of Realm that authenticates users via the Java Authentication and Authorization Service (JAAS)) -2024-09-20 17:47:15.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:15.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:15.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Realm' -2024-09-20 17:47:15.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Realm) -2024-09-20 17:47:15.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.realm.JAASRealm' -2024-09-20 17:47:15.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.realm.JAASRealm) -2024-09-20 17:47:15.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:15.981 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.981 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allRolesMode' -2024-09-20 17:47:15.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allRolesMode) -2024-09-20 17:47:15.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The all roles mode.' -2024-09-20 17:47:15.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The all roles mode.) -2024-09-20 17:47:15.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.984 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@11ab269c) -2024-09-20 17:47:15.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.985 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.987 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'appName' -2024-09-20 17:47:15.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=appName) -2024-09-20 17:47:15.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The application name passed to the JAAS LoginContext, which uses it to select the set of relevant LoginModules' -2024-09-20 17:47:15.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The application name passed to the JAAS LoginContext, which uses it to select the set of relevant LoginModules) -2024-09-20 17:47:15.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.989 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6e6d5a5e) -2024-09-20 17:47:15.990 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.991 DEBUG 22604 --- [main] org.apache.catalina.core.ContainerBase : Add child StandardHost[localhost] StandardEngine[Tomcat] -2024-09-20 17:47:15.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.991 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.991 DEBUG 22604 --- [main] .s.b.w.e.t.TomcatServletWebServerFactory : Code archive: S:\yfexam-exam-main\docs\а\exam-api.jar -2024-09-20 17:47:15.992 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.992 DEBUG 22604 --- [main] .s.b.w.e.t.TomcatServletWebServerFactory : Code archive: S:\yfexam-exam-main\docs\а\exam-api.jar -2024-09-20 17:47:15.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.992 DEBUG 22604 --- [main] .s.b.w.e.t.TomcatServletWebServerFactory : None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-09-20 17:47:15.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:15.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:15.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:15.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:15.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:15.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:15.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.995 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:15.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@76e20b5f) -2024-09-20 17:47:15.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:15.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleClassNames' -2024-09-20 17:47:15.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleClassNames) -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Comma-delimited list of javax.security.Principal classes that represent security roles' -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Comma-delimited list of javax.security.Principal classes that represent security roles) -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:15.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@27a0fc6) -2024-09-20 17:47:16.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.000 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.001 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.001 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realmPath' -2024-09-20 17:47:16.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realmPath) -2024-09-20 17:47:16.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The realm path' -2024-09-20 17:47:16.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The realm path) -2024-09-20 17:47:16.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.005 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4a2d46d3) -2024-09-20 17:47:16.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.007 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.007 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.008 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.010 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4e965a62) -2024-09-20 17:47:16.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.013 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.013 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.014 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userClassNames' -2024-09-20 17:47:16.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userClassNames) -2024-09-20 17:47:16.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Comma-delimited list of javax.security.Principal classes that represent individual users' -2024-09-20 17:47:16.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Comma-delimited list of javax.security.Principal classes that represent individual users) -2024-09-20 17:47:16.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.016 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.017 DEBUG 22604 --- [main] org.apache.catalina.core.ContainerBase : Add child StandardWrapper[default] TomcatEmbeddedContext[] -2024-09-20 17:47:16.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@28c8181c) -2024-09-20 17:47:16.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.018 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.019 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.019 DEBUG 22604 --- [main] org.apache.catalina.core.ContainerBase : Add child TomcatEmbeddedContext[] StandardEngine[Tomcat].StandardHost[localhost] -2024-09-20 17:47:16.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useContextClassLoader' -2024-09-20 17:47:16.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useContextClassLoader) -2024-09-20 17:47:16.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Sets whether to use the context or default ClassLoader.' -2024-09-20 17:47:16.021 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Sets whether to use the context or default ClassLoader.) -2024-09-20 17:47:16.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.024 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.025 INFO 22604 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8101 (http) -2024-09-20 17:47:16.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7a9e36fc) -2024-09-20 17:47:16.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.027 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validate' -2024-09-20 17:47:16.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validate) -2024-09-20 17:47:16.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we validate client certificate chains when they are presented?' -2024-09-20 17:47:16.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we validate client certificate chains when they are presented?) -2024-09-20 17:47:16.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5aa5eca2) -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:16.031 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@261cf8de) -2024-09-20 17:47:16.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.034 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.034 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:16.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:16.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.037 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4efc0cf9) -2024-09-20 17:47:16.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:16.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@45deea0c) -2024-09-20 17:47:16.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.042 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.042 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:16.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:16.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:16.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:16.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.045 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@30ebcee9) -2024-09-20 17:47:16.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=JAASRealm, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Implementation of Realm that authenticates users via the Java Authentication and Authorization Service (JAAS), group=Realm, type=org.apache.catalina.realm.JAASRealm]) -2024-09-20 17:47:16.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'JDBCRealm' -2024-09-20 17:47:16.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=JDBCRealm) -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Implementation of Realm that works with any JDBC supported database' -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Implementation of Realm that works with any JDBC supported database) -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Realm' -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Realm) -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.realm.JDBCRealm' -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.realm.JDBCRealm) -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.049 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allRolesMode' -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allRolesMode) -2024-09-20 17:47:16.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The all roles mode.' -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The all roles mode.) -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@71f01a22) -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.052 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.052 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.053 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5f455b21) -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionName' -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionName) -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The connection username to use when trying to connect to the database' -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The connection username to use when trying to connect to the database) -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.058 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Creating MBeanServer32 -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6df9444f) -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.058 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Server -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.058 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.059 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardServer[-1] Tomcat:type=Server -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionPassword' -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionPassword) -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The connection password to use when trying to connect to the database' -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The connection password to use when trying to connect to the database) -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@30b439f) -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.060 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=UtilityExecutor -2024-09-20 17:47:16.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.060 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:16.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.061 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Introspecting -2024-09-20 17:47:16.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionURL' -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionURL) -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The connection URL to use when trying to connect to the database' -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The connection URL to use when trying to connect to the database) -2024-09-20 17:47:16.062 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.util.concurrent.BlockingQueue java.util.concurrent.ScheduledThreadPoolExecutor.getQueue() -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.062 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void java.util.concurrent.ThreadPoolExecutor.setThreadFactory(java.util.concurrent.ThreadFactory) interface java.util.concurrent.ThreadFactory -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.062 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void java.util.concurrent.ThreadPoolExecutor.setRejectedExecutionHandler(java.util.concurrent.RejectedExecutionHandler) interface java.util.concurrent.RejectedExecutionHandler -2024-09-20 17:47:16.062 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.util.concurrent.ThreadFactory java.util.concurrent.ThreadPoolExecutor.getThreadFactory() -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.util.concurrent.RejectedExecutionHandler java.util.concurrent.ThreadPoolExecutor.getRejectedExecutionHandler() -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute terminating public boolean java.util.concurrent.ThreadPoolExecutor.isTerminating() null -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute largestPoolSize public int java.util.concurrent.ThreadPoolExecutor.getLargestPoolSize() null -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute terminated public boolean java.util.concurrent.ThreadPoolExecutor.isTerminated() null -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute poolSize public int java.util.concurrent.ThreadPoolExecutor.getPoolSize() null -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@725b78d6) -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute completedTaskCount public long java.util.concurrent.ThreadPoolExecutor.getCompletedTaskCount() null -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute executeExistingDelayedTasksAfterShutdownPolicy public boolean java.util.concurrent.ScheduledThreadPoolExecutor.getExecuteExistingDelayedTasksAfterShutdownPolicy() public void java.util.concurrent.ScheduledThreadPoolExecutor.setExecuteExistingDelayedTasksAfterShutdownPolicy(boolean) -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.063 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute shutdown public boolean java.util.concurrent.ThreadPoolExecutor.isShutdown() null -2024-09-20 17:47:16.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.064 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute taskCount public long java.util.concurrent.ThreadPoolExecutor.getTaskCount() null -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.064 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute continueExistingPeriodicTasksAfterShutdownPolicy public boolean java.util.concurrent.ScheduledThreadPoolExecutor.getContinueExistingPeriodicTasksAfterShutdownPolicy() public void java.util.concurrent.ScheduledThreadPoolExecutor.setContinueExistingPeriodicTasksAfterShutdownPolicy(boolean) -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.064 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute removeOnCancelPolicy public boolean java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy() public void java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy(boolean) -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.064 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maximumPoolSize public int java.util.concurrent.ThreadPoolExecutor.getMaximumPoolSize() public void java.util.concurrent.ThreadPoolExecutor.setMaximumPoolSize(int) -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.064 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute corePoolSize public int java.util.concurrent.ThreadPoolExecutor.getCorePoolSize() public void java.util.concurrent.ThreadPoolExecutor.setCorePoolSize(int) -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.064 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute activeCount public int java.util.concurrent.ThreadPoolExecutor.getActiveCount() null -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.064 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Setting name: java.util.concurrent.ScheduledThreadPoolExecutor -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.064 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister java.util.concurrent.ScheduledThreadPoolExecutor@588ffeb[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0] Tomcat:type=UtilityExecutor -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'driverName' -2024-09-20 17:47:16.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=driverName) -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The JDBC driver to use' -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The JDBC driver to use) -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.065 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=StringCache -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.065 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@732a9ef) -2024-09-20 17:47:16.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.066 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Introspecting -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleNameCol' -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleNameCol) -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The column in the user role table that names a role' -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The column in the user role table that names a role) -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.066 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute trainThreshold public int org.apache.tomcat.util.buf.StringCache.getTrainThreshold() public void org.apache.tomcat.util.buf.StringCache.setTrainThreshold(int) -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.066 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute byteEnabled public boolean org.apache.tomcat.util.buf.StringCache.getByteEnabled() public void org.apache.tomcat.util.buf.StringCache.setByteEnabled(boolean) -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.066 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute hitCount public int org.apache.tomcat.util.buf.StringCache.getHitCount() null -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.066 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute accessCount public int org.apache.tomcat.util.buf.StringCache.getAccessCount() null -2024-09-20 17:47:16.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.067 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute charEnabled public boolean org.apache.tomcat.util.buf.StringCache.getCharEnabled() public void org.apache.tomcat.util.buf.StringCache.setCharEnabled(boolean) -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.067 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute cacheSize public int org.apache.tomcat.util.buf.StringCache.getCacheSize() public void org.apache.tomcat.util.buf.StringCache.setCacheSize(int) -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@20ce4e7a) -2024-09-20 17:47:16.067 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Setting name: org.apache.tomcat.util.buf.StringCache -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.067 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.tomcat.util.buf.StringCache@5eeedb60 Tomcat:type=StringCache -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.067 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realmPath' -2024-09-20 17:47:16.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realmPath) -2024-09-20 17:47:16.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The realm path' -2024-09-20 17:47:16.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The realm path) -2024-09-20 17:47:16.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7900e647) -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@50b4ac79) -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.071 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userCredCol' -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userCredCol) -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The column in the user table that holds the user's credentials' -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The column in the user table that holds the user's credentials) -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@425b1a51) -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userNameCol' -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userNameCol) -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The column in the user table that holds the user's username' -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The column in the user table that holds the user's username) -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@10b431fe) -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userRoleTable' -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userRoleTable) -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The table that holds the relation between user's and roles' -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The table that holds the relation between user's and roles) -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6e78df71) -2024-09-20 17:47:16.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userTable' -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userTable) -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The table that holds user data' -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The table that holds user data) -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.078 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1bda71a3) -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validate' -2024-09-20 17:47:16.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validate) -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'validate certificate chains' flag.' -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'validate certificate chains' flag.) -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1c9791b) -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3043831d) -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@18e84133) -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@50f76ce4) -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1abcd640) -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.087 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=JDBCRealm, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Implementation of Realm that works with any JDBC supported database, group=Realm, type=org.apache.catalina.realm.JDBCRealm]) -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.088 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'JNDIRealm' -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=JNDIRealm) -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Implementation of Realm that works with a directory server accessed via the Java Naming and Directory Interface (JNDI) APIs' -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Implementation of Realm that works with a directory server accessed via the Java Naming and Directory Interface (JNDI) APIs) -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Realm' -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Realm) -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.realm.JNDIRealm' -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.realm.JNDIRealm) -2024-09-20 17:47:16.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'adCompat' -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=adCompat) -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to ' The current settings for handling PartialResultExceptions' -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description= The current settings for handling PartialResultExceptions) -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@364bf561) -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allRolesMode' -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allRolesMode) -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The all roles mode.' -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The all roles mode.) -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6c70cb42) -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'alternateURL' -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=alternateURL) -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The Alternate URL' -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The Alternate URL) -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@78b0a64) -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'authentication' -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=authentication) -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The type of authentication to use' -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The type of authentication to use) -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.096 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7bf9c203) -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1270c0e0) -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.099 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'commonRole' -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=commonRole) -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The common role' -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The common role) -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.100 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@78302337) -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.101 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionName' -2024-09-20 17:47:16.102 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionName) -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The connection username for the server we will contact' -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The connection username for the server we will contact) -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2737ce7f) -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.103 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionPassword' -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionPassword) -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The connection password for the server we will contact' -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The connection password for the server we will contact) -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.104 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@12ebf940) -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionTimeout' -2024-09-20 17:47:16.105 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionTimeout) -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The connection timeout' -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The connection timeout) -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6884c3d) -2024-09-20 17:47:16.107 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionURL' -2024-09-20 17:47:16.108 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionURL) -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The connection URL for the server we will contact' -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The connection URL for the server we will contact) -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.109 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7fd8fe40) -2024-09-20 17:47:16.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.110 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.110 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.110 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'contextFactory' -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=contextFactory) -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The JNDI context factory for this Realm' -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The JNDI context factory for this Realm) -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.111 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@660583f2) -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.112 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'protocol' -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=protocol) -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The protocol to be used' -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The protocol to be used) -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.113 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2b69478b) -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.114 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.115 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realmPath' -2024-09-20 17:47:16.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realmPath) -2024-09-20 17:47:16.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The realm path' -2024-09-20 17:47:16.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The realm path) -2024-09-20 17:47:16.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.116 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.117 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.117 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6fc41f7f) -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'referrals' -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=referrals) -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The current setting for handling JNDI referrals.' -2024-09-20 17:47:16.118 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The current setting for handling JNDI referrals.) -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.119 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5756d639) -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleBase' -2024-09-20 17:47:16.120 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleBase) -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The base element for role searches' -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The base element for role searches) -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1d86d532) -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.121 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleName' -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleName) -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the attribute containing roles held elsewhere' -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the attribute containing roles held elsewhere) -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.122 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7c328c16) -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.123 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleNested' -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleNested) -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'The nested group search flag' flag' -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'The nested group search flag' flag) -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.124 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@33c25b08) -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.125 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleSearch' -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleSearch) -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The message format used to select roles for a user' -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The message format used to select roles for a user) -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@52c4b457) -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.126 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.127 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleSearchAsUser' -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleSearchAsUser) -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the search for user roles be performed as the authenticating user?' -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the search for user roles be performed as the authenticating user?) -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.128 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7940d478) -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.129 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roleSubtree' -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roleSubtree) -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we search the entire subtree for matching memberships?' -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we search the entire subtree for matching memberships?) -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.130 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.136 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.137 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@11faa57a) -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.138 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3041a656) -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.139 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userBase' -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userBase) -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The base element for user searches' -2024-09-20 17:47:16.140 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The base element for user searches) -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4750da05) -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.141 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userPassword' -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userPassword) -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The attribute name used to retrieve the user password' -2024-09-20 17:47:16.142 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The attribute name used to retrieve the user password) -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.143 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@384c3583) -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userPattern' -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userPattern) -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The message format used to select a user' -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The message format used to select a user) -2024-09-20 17:47:16.144 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7c599685) -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.145 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userRoleName' -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userRoleName) -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the attribute in the user's entry containing roles for that user' -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the attribute in the user's entry containing roles for that user) -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4197ec4e) -2024-09-20 17:47:16.146 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userSearch' -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userSearch) -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The message format used to search for a user' -2024-09-20 17:47:16.148 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The message format used to search for a user) -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@56968b) -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.149 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userSearchAsUser' -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userSearchAsUser) -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the search for the user's DN be performed as the authenticating user?' -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the search for the user's DN be performed as the authenticating user?) -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.150 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@59ef5b2f) -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.151 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'userSubtree' -2024-09-20 17:47:16.152 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=userSubtree) -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we search the entire subtree for matching users?' -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we search the entire subtree for matching users?) -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.153 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@69320329) -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.154 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validate' -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validate) -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'validate certificate chains' flag.' -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'validate certificate chains' flag.) -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.155 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@173967dd) -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.156 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.157 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.158 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@236f597f) -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.159 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.160 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7a481e) -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.161 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:16.162 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.163 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@79a82873) -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.164 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.165 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@25f3bf14) -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.166 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=JNDIRealm, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Implementation of Realm that works with a directory server accessed via the Java Naming and Directory Interface (JNDI) APIs, group=Realm, type=org.apache.catalina.realm.JNDIRealm]) -2024-09-20 17:47:16.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.167 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'MemoryRealm' -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=MemoryRealm) -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Simple implementation of Realm that reads an XML file to configure the valid users, passwords, and roles' -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Simple implementation of Realm that reads an XML file to configure the valid users, passwords, and roles) -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.168 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Realm' -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Realm) -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.realm.MemoryRealm' -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.realm.MemoryRealm) -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.169 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allRolesMode' -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allRolesMode) -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The all roles mode.' -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The all roles mode.) -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7c0eae74) -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.170 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.171 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.171 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.171 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2ee63353) -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.172 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'pathname' -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=pathname) -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The pathname of the XML file containing our database information' -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The pathname of the XML file containing our database information) -2024-09-20 17:47:16.173 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@16b56d4c) -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.174 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realmPath' -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realmPath) -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The realm path' -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The realm path) -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.175 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2e866b91) -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.176 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.177 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.179 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@27720d3b) -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validate' -2024-09-20 17:47:16.180 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validate) -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'validate certificate chains' flag.' -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'validate certificate chains' flag.) -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3811de2d) -2024-09-20 17:47:16.181 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:16.182 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5f30b6e) -2024-09-20 17:47:16.183 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.184 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.185 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@18b432a2) -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.186 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.187 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2f18ef5a) -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.188 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:16.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:16.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:16.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:16.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.189 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@194ebc22) -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.190 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=MemoryRealm, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Simple implementation of Realm that reads an XML file to configure the valid users, passwords, and roles, group=Realm, type=org.apache.catalina.realm.MemoryRealm]) -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.191 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'UserDatabaseRealm' -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=UserDatabaseRealm) -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Realm connected to a UserDatabase as a global JNDI resource' -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Realm connected to a UserDatabase as a global JNDI resource) -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Realm' -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Realm) -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.realm.UserDatabaseRealm' -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.realm.UserDatabaseRealm) -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.192 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allRolesMode' -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allRolesMode) -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The all roles mode.' -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The all roles mode.) -2024-09-20 17:47:16.193 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.194 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@47b7c1e) -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.195 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3d637f11) -2024-09-20 17:47:16.196 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'resourceName' -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=resourceName) -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The global JNDI name of the UserDatabase resource to use' -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The global JNDI name of the UserDatabase resource to use) -2024-09-20 17:47:16.197 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@55e925d8) -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.198 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realmPath' -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realmPath) -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The realm path' -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The realm path) -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.199 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@39aa3ceb) -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.200 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.201 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@66ee2c4c) -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.202 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validate' -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validate) -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'validate certificate chains' flag.' -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'validate certificate chains' flag.) -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.203 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@40535c77) -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:16.204 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5c086640) -2024-09-20 17:47:16.205 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.206 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@342d444e) -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.207 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:16.208 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@233682cb) -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.209 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.210 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.210 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.210 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.211 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@79dcc23e) -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.212 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=UserDatabaseRealm, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Realm connected to a UserDatabase as a global JNDI resource, group=Realm, type=org.apache.catalina.realm.UserDatabaseRealm]) -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.213 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'CombinedRealm' -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=CombinedRealm) -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Realm implementation that can be used to chain multiple realms' -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Realm implementation that can be used to chain multiple realms) -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Realm' -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Realm) -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.realm.CombinedRealm' -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.realm.CombinedRealm) -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.214 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allRolesMode' -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allRolesMode) -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The all roles mode.' -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The all roles mode.) -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.215 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@66f98123) -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.216 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@38a8a686) -2024-09-20 17:47:16.217 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.218 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realms' -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realms) -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The set of realms that the combined realm is wrapping' -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The set of realms that the combined realm is wrapping) -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljavax.management.ObjectName;' -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljavax.management.ObjectName;) -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.219 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2f9f4b82) -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.220 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realmPath' -2024-09-20 17:47:16.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realmPath) -2024-09-20 17:47:16.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The realm path' -2024-09-20 17:47:16.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The realm path) -2024-09-20 17:47:16.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.221 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@304da17d) -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.222 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.223 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1a97dece) -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.224 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validate' -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validate) -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'validate certificate chains' flag.' -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'validate certificate chains' flag.) -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.225 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@67f6c78c) -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.226 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addRealm' -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addRealm) -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new Realm to the set of Realms wrapped by this realm' -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new Realm to the set of Realms wrapped by this realm) -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.227 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'theRealm' -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=theRealm) -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New Realm to add' -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New Realm to add) -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'org.apache.catalina.Realm' -2024-09-20 17:47:16.228 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=org.apache.catalina.Realm) -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@326053ab) -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.229 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6ffb5ad3) -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.230 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.231 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4bbe884c) -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.232 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1aa5fc10) -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.233 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.234 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2a6809e4) -2024-09-20 17:47:16.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.235 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.236 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.236 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.237 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1f70e3b8) -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=CombinedRealm, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Realm implementation that can be used to chain multiple realms, group=Realm, type=org.apache.catalina.realm.CombinedRealm]) -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.238 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.239 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.239 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.240 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.240 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'LockOutRealm' -2024-09-20 17:47:16.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=LockOutRealm) -2024-09-20 17:47:16.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Realm implementation that can be used to wrap existing realms to provide a user lock-out capability' -2024-09-20 17:47:16.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Realm implementation that can be used to wrap existing realms to provide a user lock-out capability) -2024-09-20 17:47:16.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.241 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Realm' -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Realm) -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.realm.LockOutRealm' -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.realm.LockOutRealm) -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allRolesMode' -2024-09-20 17:47:16.242 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allRolesMode) -2024-09-20 17:47:16.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The all roles mode.' -2024-09-20 17:47:16.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The all roles mode.) -2024-09-20 17:47:16.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.243 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.243 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@20b3f4f2) -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.244 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cacheSize' -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cacheSize) -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of users that have failed authentication to keep in cache. Over time the cache will grow to this size and may not shrink. Defaults to 1000.' -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of users that have failed authentication to keep in cache. Over time the cache will grow to this size and may not shrink. Defaults to 1000.) -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.245 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@15c3c988) -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cacheRemovalWarningTime' -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cacheRemovalWarningTime) -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'If a failed user is removed from the cache because the cache is too big before it has been in the cache for at least this period of time (in seconds) a warning message will be logged. Defaults to 3600 (1 hour).' -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=If a failed user is removed from the cache because the cache is too big before it has been in the cache for at least this period of time (in seconds) a warning message will be logged. Defaults to 3600 (1 hour).) -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.246 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7f8ec5fd) -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.247 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.248 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.249 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.249 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@677b8497) -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.250 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'failureCount' -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=failureCount) -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The number of times in a row a user has to fail authentication to be locked out. Defaults to 5.' -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The number of times in a row a user has to fail authentication to be locked out. Defaults to 5.) -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.251 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@58d0e8ee) -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.252 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'lockOutTime' -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=lockOutTime) -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The time (in seconds) a user is locked out for after too many authentication failures. Defaults to 300 (5 minutes).' -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The time (in seconds) a user is locked out for after too many authentication failures. Defaults to 300 (5 minutes).) -2024-09-20 17:47:16.253 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5354e5f5) -2024-09-20 17:47:16.254 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realms' -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realms) -2024-09-20 17:47:16.255 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The set of realms that the lockout realm is wrapping' -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The set of realms that the lockout realm is wrapping) -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljavax.management.ObjectName;' -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljavax.management.ObjectName;) -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.256 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5afc634f) -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'realmPath' -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=realmPath) -2024-09-20 17:47:16.257 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The realm path' -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The realm path) -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@61980bbb) -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.258 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'validate' -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=validate) -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'validate certificate chains' flag.' -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'validate certificate chains' flag.) -2024-09-20 17:47:16.259 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ed008fe) -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.260 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addRealm' -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addRealm) -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a new Realm to the set of Realms wrapped by this realm' -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a new Realm to the set of Realms wrapped by this realm) -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.261 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.262 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.262 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.262 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'theRealm' -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=theRealm) -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'New Realm to add' -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=New Realm to add) -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'org.apache.catalina.Realm' -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=org.apache.catalina.Realm) -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.263 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4a5f299c) -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7300dd83) -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.264 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'isLocked' -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=isLocked) -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Determine if the specified user is locked' -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Determine if the specified user is locked) -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.265 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'username' -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=username) -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'User to test for being locked' -2024-09-20 17:47:16.266 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=User to test for being locked) -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5264d58b) -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.267 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6ccdb0c1) -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.268 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'unlock' -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=unlock) -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Unlock the specified user' -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Unlock the specified user) -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.269 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'username' -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=username) -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'User to unlock' -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=User to unlock) -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.270 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5f6d670d) -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2a7455a6) -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.272 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.273 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5ec815ee) -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.274 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.275 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5f82ed4e) -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.276 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.277 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.277 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.277 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.278 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6b63bcbc) -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.279 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.280 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@63321d13) -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.281 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=LockOutRealm, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Realm implementation that can be used to wrap existing realms to provide a user lock-out capability, group=Realm, type=org.apache.catalina.realm.LockOutRealm]) -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:16.282 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:16.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - -' -2024-09-20 17:47:16.283 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.283 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:16.283 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/session/mbeans-descriptors.xml -2024-09-20 17:47:16.283 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@7d4b13fe) -2024-09-20 17:47:16.283 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardManager' -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardManager) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Standard implementation of the Manager interface' -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Standard implementation of the Manager interface) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Manager' -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Manager) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.session.StandardManager' -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.session.StandardManager) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.284 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.285 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'activeSessions' -2024-09-20 17:47:16.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=activeSessions) -2024-09-20 17:47:16.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of active sessions at this moment' -2024-09-20 17:47:16.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of active sessions at this moment) -2024-09-20 17:47:16.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.286 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.287 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.287 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@35eb6984) -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.288 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.289 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@439bb5d9) -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.290 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'duplicates' -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=duplicates) -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of duplicated session ids generated' -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of duplicated session ids generated) -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.291 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@30b2f23c) -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'expiredSessions' -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=expiredSessions) -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of sessions that expired ( doesn't include explicit invalidations )' -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of sessions that expired ( doesn't include explicit invalidations )) -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.292 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1543c337) -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.294 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'jvmRoute' -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=jvmRoute) -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Retrieve the JvmRoute for the enclosing Engine' -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Retrieve the JvmRoute for the enclosing Engine) -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.295 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7b8a2f52) -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.296 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxActive' -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxActive) -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum number of active sessions so far' -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum number of active sessions so far) -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.297 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@65a16887) -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxActiveSessions' -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxActiveSessions) -2024-09-20 17:47:16.298 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The maximum number of active Sessions allowed, or -1 for no limit' -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The maximum number of active Sessions allowed, or -1 for no limit) -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4225551d) -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.299 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The descriptive name of this Manager implementation (for logging)' -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The descriptive name of this Manager implementation (for logging)) -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.300 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.301 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@49746c15) -2024-09-20 17:47:16.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.302 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.303 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.303 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.303 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'pathname' -2024-09-20 17:47:16.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=pathname) -2024-09-20 17:47:16.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Path name of the disk file in which active sessions' -2024-09-20 17:47:16.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Path name of the disk file in which active sessions) -2024-09-20 17:47:16.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.304 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@63ae3ad6) -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.305 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.306 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processExpiresFrequency' -2024-09-20 17:47:16.306 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processExpiresFrequency) -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The frequency of the manager checks (expiration and passivation)' -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The frequency of the manager checks (expiration and passivation)) -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.307 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d259374) -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.308 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processingTime' -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processingTime) -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time spent doing housekeeping and expiration' -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time spent doing housekeeping and expiration) -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:16.309 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:16.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.310 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.310 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6540b270) -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.311 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomAlgorithm' -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomAlgorithm) -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The secure random number generator algorithm name' -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The secure random number generator algorithm name) -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.312 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@f3e6e09) -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass' -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass) -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The secure random number generator class name' -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The secure random number generator class name) -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.313 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1dd49db2) -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomProvider' -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomProvider) -2024-09-20 17:47:16.315 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The secure random number generator provider name' -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The secure random number generator provider name) -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ccb034f) -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.316 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionAverageAliveTime' -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionAverageAliveTime) -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Average time an expired session had been alive' -2024-09-20 17:47:16.317 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Average time an expired session had been alive) -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.318 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5c78e594) -2024-09-20 17:47:16.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.319 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCreateRate' -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCreateRate) -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Session creation rate in sessions per minute' -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Session creation rate in sessions per minute) -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.320 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@20ca8634) -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.321 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCounter' -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCounter) -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Total number of sessions created by this manager' -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Total number of sessions created by this manager) -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:16.322 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@19caa692) -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.323 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionExpireRate' -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionExpireRate) -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Session expiration rate in sessions per minute' -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Session expiration rate in sessions per minute) -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.324 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7d7f1f9f) -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionMaxAliveTime' -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionMaxAliveTime) -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Longest time an expired session had been alive' -2024-09-20 17:47:16.325 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Longest time an expired session had been alive) -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@66b011e1) -2024-09-20 17:47:16.326 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.327 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.327 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.327 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.328 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@12bfc025) -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.329 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'rejectedSessions' -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=rejectedSessions) -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of sessions we rejected due to maxActive being reached' -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of sessions we rejected due to maxActive being reached) -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.330 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5e8d1ad6) -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.331 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionAttributeNameFilter' -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionAttributeNameFilter) -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The string pattern used for including session attributes in distribution. Null means all attributes are included.' -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The string pattern used for including session attributes in distribution. Null means all attributes are included.) -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.332 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5b0b757f) -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionAttributeValueClassNameFilter' -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionAttributeValueClassNameFilter) -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The regular expression used to filter session attributes based on the implementation class of the value. The regular expression is anchored and must match the fully qualified class name.' -2024-09-20 17:47:16.333 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The regular expression used to filter session attributes based on the implementation class of the value. The regular expression is anchored and must match the fully qualified class name.) -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.335 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3dd258e6) -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.336 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'warnOnSessionAttributeFilterFailure' -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=warnOnSessionAttributeFilterFailure) -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should a WARN level log message be generated if a session attribute fails to match sessionAttributeNameFilter or sessionAttributeClassNameFilter?' -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should a WARN level log message be generated if a session attribute fails to match sessionAttributeNameFilter or sessionAttributeClassNameFilter?) -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.337 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@51001991) -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'backgroundProcess' -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=backgroundProcess) -2024-09-20 17:47:16.338 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Invalidate all sessions that have expired.' -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Invalidate all sessions that have expired.) -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.339 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@676df2cd) -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'expireSession' -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=expireSession) -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Expire a session' -2024-09-20 17:47:16.340 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Expire a session) -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.341 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.342 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@67cdc3d2) -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.343 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.344 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@48f7a2a5) -2024-09-20 17:47:16.344 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.344 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.344 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.344 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.344 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.344 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.344 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getCreationTime' -2024-09-20 17:47:16.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getCreationTime) -2024-09-20 17:47:16.345 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the creation time' -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the creation time) -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.346 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@19eae6bb) -2024-09-20 17:47:16.347 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.348 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.348 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.348 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@119984d1) -2024-09-20 17:47:16.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.349 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getCreationTimestamp' -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getCreationTimestamp) -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the creation timestamp' -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the creation timestamp) -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.350 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'long' -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=long) -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.351 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.352 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@18c31663) -2024-09-20 17:47:16.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.353 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.353 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.353 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6d547d54) -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getLastAccessedTime' -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getLastAccessedTime) -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the last access time' -2024-09-20 17:47:16.354 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the last access time) -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.355 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@23c5917b) -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.356 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7e2726de) -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.357 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getLastAccessedTimestamp' -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getLastAccessedTimestamp) -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the last access timestamp' -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the last access timestamp) -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.358 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'long' -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=long) -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.359 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.360 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.360 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7e575777) -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.361 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@30273b34) -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getSessionAttribute' -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getSessionAttribute) -2024-09-20 17:47:16.362 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return a session attribute' -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return a session attribute) -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.363 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.364 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3f662a02) -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'key' -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=key) -2024-09-20 17:47:16.365 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'key of the attribute' -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=key of the attribute) -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7830fae6) -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.366 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3c18e678) -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.367 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.368 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'listSessionIds' -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=listSessionIds) -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the list of active session ids' -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the list of active session ids) -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.369 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@356f8454) -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.370 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardManager, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Standard implementation of the Manager interface, group=Manager, type=org.apache.catalina.session.StandardManager]) -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'PersistentManager' -2024-09-20 17:47:16.372 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=PersistentManager) -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Persistent Manager' -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Persistent Manager) -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Manager' -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Manager) -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.session.PersistentManager' -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.session.PersistentManager) -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.373 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'activeSessions' -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=activeSessions) -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of active sessions at this moment' -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of active sessions at this moment) -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.374 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3bd79ec1) -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.375 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.376 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@444fb497) -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.377 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'duplicates' -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=duplicates) -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of duplicated session ids generated' -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of duplicated session ids generated) -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.378 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3f9fb140) -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.379 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'expiredSessions' -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=expiredSessions) -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of sessions that expired ( doesn't include explicit invalidations )' -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of sessions that expired ( doesn't include explicit invalidations )) -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.380 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@761bcfc3) -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'jvmRoute' -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=jvmRoute) -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Retrieve the JvmRoute for the enclosing Engine' -2024-09-20 17:47:16.381 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Retrieve the JvmRoute for the enclosing Engine) -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@71bd7657) -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.382 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxActive' -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxActive) -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum number of active sessions so far' -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum number of active sessions so far) -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.383 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@486f8ffb) -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.384 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxActiveSessions' -2024-09-20 17:47:16.385 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxActiveSessions) -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The maximum number of active Sessions allowed, or -1 for no limit' -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The maximum number of active Sessions allowed, or -1 for no limit) -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@a383207) -2024-09-20 17:47:16.386 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxIdleBackup' -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxIdleBackup) -2024-09-20 17:47:16.387 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Indicates how many seconds old a session can get, after its last use in a request, before it should be backed up to the store. -1 means sessions are not backed up.' -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Indicates how many seconds old a session can get, after its last use in a request, before it should be backed up to the store. -1 means sessions are not backed up.) -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@22f59154) -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.388 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxIdleSwap' -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxIdleSwap) -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Indicates how many seconds old a session can get, after its last use in a request, before it should be backed up to the store. -1 means sessions are not backed up.' -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Indicates how many seconds old a session can get, after its last use in a request, before it should be backed up to the store. -1 means sessions are not backed up.) -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.389 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@38e05493) -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.390 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minIdleSwap' -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minIdleSwap) -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to ' The minimum time in seconds that a session must be idle before it can be swapped out of memory, or -1 if it can be swapped out at any time.' -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description= The minimum time in seconds that a session must be idle before it can be swapped out of memory, or -1 if it can be swapped out at any time.) -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.391 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@c441423) -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.392 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The descriptive name of this Manager implementation (for logging)' -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The descriptive name of this Manager implementation (for logging)) -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.393 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@47a7a7a6) -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.394 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processExpiresFrequency' -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processExpiresFrequency) -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The frequency of the manager checks (expiration and passivation)' -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The frequency of the manager checks (expiration and passivation)) -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.395 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4956f137) -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processingTime' -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processingTime) -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Time spent doing housekeeping and expiration' -2024-09-20 17:47:16.396 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Time spent doing housekeeping and expiration) -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.397 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@73287042) -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'saveOnRestart' -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=saveOnRestart) -2024-09-20 17:47:16.398 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Indicates whether sessions are saved when the Manager is shut down properly. This requires the unload() method to be called.' -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Indicates whether sessions are saved when the Manager is shut down properly. This requires the unload() method to be called.) -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5f619708) -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.399 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secureRandomClass' -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secureRandomClass) -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The random number generator class name' -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The random number generator class name) -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.400 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@250181d5) -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.401 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionAverageAliveTime' -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionAverageAliveTime) -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Average time an expired session had been alive' -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Average time an expired session had been alive) -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.402 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5b20130b) -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.403 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCreateRate' -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCreateRate) -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Session creation rate in sessions per minute' -2024-09-20 17:47:16.404 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Session creation rate in sessions per minute) -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6bbac24d) -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.405 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.406 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.406 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.406 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionCounter' -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionCounter) -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Total number of sessions created by this manager' -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Total number of sessions created by this manager) -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.407 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@38b0d1e5) -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.408 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionExpireRate' -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionExpireRate) -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Session expiration rate in sessions per minute' -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Session expiration rate in sessions per minute) -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.409 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1196f00f) -2024-09-20 17:47:16.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.410 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionMaxAliveTime' -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionMaxAliveTime) -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Longest time an expired session had been alive' -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Longest time an expired session had been alive) -2024-09-20 17:47:16.411 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4af5017d) -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.412 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.413 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@77601ac4) -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.414 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'rejectedSessions' -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=rejectedSessions) -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of sessions we rejected due to maxActive being reached' -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of sessions we rejected due to maxActive being reached) -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.415 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@49e1c234) -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.416 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionAttributeNameFilter' -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionAttributeNameFilter) -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The string pattern used for including session attributes in distribution. Null means all attributes are included.' -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The string pattern used for including session attributes in distribution. Null means all attributes are included.) -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6f51558f) -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.417 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionAttributeValueClassNameFilter' -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionAttributeValueClassNameFilter) -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The regular expression used to filter session attributes based on the implementation class of the value. The regular expression is anchored and must match the fully qualified class name.' -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The regular expression used to filter session attributes based on the implementation class of the value. The regular expression is anchored and must match the fully qualified class name.) -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.418 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@dcd5ff1) -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.419 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'warnOnSessionAttributeFilterFailure' -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=warnOnSessionAttributeFilterFailure) -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should a WARN level log message be generated if a session attribute fails to match sessionAttributeNameFilter or sessionAttributeClassNameFilter?' -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should a WARN level log message be generated if a session attribute fails to match sessionAttributeNameFilter or sessionAttributeClassNameFilter?) -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.420 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7a8cc2b6) -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.421 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'backgroundProcess' -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=backgroundProcess) -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Invalidate all sessions that have expired.' -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Invalidate all sessions that have expired.) -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.422 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3d3b5fb1) -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.423 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'expireSession' -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=expireSession) -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Expire a session' -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Expire a session) -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.424 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.425 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@58a388b4) -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.427 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3f766686) -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.428 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getCreationTime' -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getCreationTime) -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the creation time' -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the creation time) -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.429 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.430 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@23f39aac) -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@44d29fb4) -2024-09-20 17:47:16.431 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getCreationTimestamp' -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getCreationTimestamp) -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the creation timestamp' -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the creation timestamp) -2024-09-20 17:47:16.432 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'long' -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=long) -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.433 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7059b2) -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.434 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@c3e4d6c) -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.435 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getLastAccessedTime' -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getLastAccessedTime) -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the last access time' -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the last access time) -2024-09-20 17:47:16.436 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.437 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.437 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.437 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.438 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@332790bd) -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.439 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@63d88652) -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getLastAccessedTimestamp' -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getLastAccessedTimestamp) -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the last access timestamp' -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the last access timestamp) -2024-09-20 17:47:16.440 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'long' -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=long) -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.441 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@61e7ee52) -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.442 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1f4c9a2f) -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.443 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getSessionAttribute' -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getSessionAttribute) -2024-09-20 17:47:16.444 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return a session attribute' -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return a session attribute) -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.445 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.446 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@10e15303) -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'key' -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=key) -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'key of the attribute' -2024-09-20 17:47:16.447 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=key of the attribute) -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@372cbd5b) -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.448 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@69e74092) -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.449 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'listSessionIds' -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=listSessionIds) -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return the list of active session ids' -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return the list of active session ids) -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:16.450 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@12812263) -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.451 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'isLoaded' -2024-09-20 17:47:16.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=isLoaded) -2024-09-20 17:47:16.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'If the session id is loaded in memory?' -2024-09-20 17:47:16.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=If the session id is loaded in memory?) -2024-09-20 17:47:16.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:16.452 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'sessionId' -2024-09-20 17:47:16.453 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=sessionId) -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Id of the session' -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Id of the session) -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@862127b) -2024-09-20 17:47:16.454 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5a76a049) -2024-09-20 17:47:16.455 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.456 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.456 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.456 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=PersistentManager, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Persistent Manager, group=Manager, type=org.apache.catalina.session.PersistentManager]) -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - -' -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.457 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:16.458 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/startup/mbeans-descriptors.xml -2024-09-20 17:47:16.458 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@9469845) -2024-09-20 17:47:16.458 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:16.458 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:16.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:16.458 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.458 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.458 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ContextConfig' -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ContextConfig) -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Startup event listener for a Context that configures the properties of that Context, and the associated defined servlets' -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Startup event listener for a Context that configures the properties of that Context, and the associated defined servlets) -2024-09-20 17:47:16.459 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Listener' -2024-09-20 17:47:16.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Listener) -2024-09-20 17:47:16.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.startup.ContextConfig' -2024-09-20 17:47:16.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.startup.ContextConfig) -2024-09-20 17:47:16.460 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.460 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.461 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@12cf2134) -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.462 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultContextXml' -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultContextXml) -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The location of the default context file' -2024-09-20 17:47:16.463 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The location of the default context file) -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@aa608dc) -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.464 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultWebXml' -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultWebXml) -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The location of the default deployment descriptor' -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The location of the default deployment descriptor) -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.465 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@653d9529) -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.466 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - ' -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ContextConfig, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Startup event listener for a Context that configures the properties of that Context, and the associated defined servlets, group=Listener, type=org.apache.catalina.startup.ContextConfig]) -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.467 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'EngineConfig' -2024-09-20 17:47:16.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=EngineConfig) -2024-09-20 17:47:16.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Startup event listener for a Engine that configures the properties of that Engine, and the associated defined contexts' -2024-09-20 17:47:16.468 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Startup event listener for a Engine that configures the properties of that Engine, and the associated defined contexts) -2024-09-20 17:47:16.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Listener' -2024-09-20 17:47:16.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Listener) -2024-09-20 17:47:16.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.startup.EngineConfig' -2024-09-20 17:47:16.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.startup.EngineConfig) -2024-09-20 17:47:16.469 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.470 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5804bd7b) -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.471 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=EngineConfig, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Startup event listener for a Engine that configures the properties of that Engine, and the associated defined contexts, group=Listener, type=org.apache.catalina.startup.EngineConfig]) -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:16.472 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'HostConfig' -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=HostConfig) -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Startup event listener for a Host that configures the properties of that Host, and the associated defined contexts' -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Startup event listener for a Host that configures the properties of that Host, and the associated defined contexts) -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.473 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Listener' -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Listener) -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.startup.HostConfig' -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.startup.HostConfig) -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.474 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.475 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3329f1ce) -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.476 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'configBaseName' -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=configBaseName) -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The base directory for Context configuration files' -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The base directory for Context configuration files) -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@9f3ef9f) -2024-09-20 17:47:16.477 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'contextClass' -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=contextClass) -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The Java class name of the Context implementation we should use' -2024-09-20 17:47:16.478 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The Java class name of the Context implementation we should use) -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6eb755) -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.479 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'copyXML' -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=copyXML) -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The copy XML config file flag for this component' -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The copy XML config file flag for this component) -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.480 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7dfc2d46) -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.481 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deployXML' -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deployXML) -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The deploy XML config file flag for this component' -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The deploy XML config file flag for this component) -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.482 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@621f45a7) -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.483 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'unpackWARs' -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=unpackWARs) -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The unpack WARs flag' -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The unpack WARs flag) -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.484 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.485 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7e95d2bf) -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addServiced' -2024-09-20 17:47:16.486 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addServiced) -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a web application to the serviced list to show it gets serviced by another component' -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a web application to the serviced list to show it gets serviced by another component) -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.487 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:16.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:16.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Application name' -2024-09-20 17:47:16.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Application name) -2024-09-20 17:47:16.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.488 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@47ae6b7f) -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.489 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2413f15c) -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.490 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'check' -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=check) -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Check a web application name for updates' -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Check a web application name for updates) -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.491 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.492 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:16.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:16.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Application name' -2024-09-20 17:47:16.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Application name) -2024-09-20 17:47:16.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.493 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.494 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.494 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.495 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3c39ba04) -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.496 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6c699716) -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.497 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.498 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.498 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'checkUndeploy' -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=checkUndeploy) -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Undeploy any old versions of applications deployed using parallel deployment that have no active sessions' -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Undeploy any old versions of applications deployed using parallel deployment that have no active sessions) -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5828fc77) -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.499 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getDeploymentTime' -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getDeploymentTime) -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Get the instant where an application was deployed' -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Get the instant where an application was deployed) -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.500 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'long' -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=long) -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Application name' -2024-09-20 17:47:16.501 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Application name) -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.502 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@630a6f3f) -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@121210c0) -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.503 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'isDeployed' -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=isDeployed) -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Was this web application deployed by this component' -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Was this web application deployed by this component) -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.504 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:16.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:16.505 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.505 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.505 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Application name' -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Application name) -2024-09-20 17:47:16.506 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@32e3f4b3) -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.507 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2db76ddc) -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.508 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'isServiced' -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=isServiced) -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Is a web application serviced by another component' -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Is a web application serviced by another component) -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.509 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Application name' -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Application name) -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.510 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1df48cc2) -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.511 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1f620bac) -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.512 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'manageApp' -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=manageApp) -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Add a web application managed externally' -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Add a web application managed externally) -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.513 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'context' -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=context) -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Context to add' -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Context to add) -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'org.apache.catalina.Context' -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=org.apache.catalina.Context) -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.514 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3289229f) -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@24c6609f) -2024-09-20 17:47:16.515 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeServiced' -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeServiced) -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a web application from the serviced list to show it isn't serviced by another component' -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a web application from the serviced list to show it isn't serviced by another component) -2024-09-20 17:47:16.516 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'name' -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=name) -2024-09-20 17:47:16.517 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Application name' -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Application name) -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1ded6a59) -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.518 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@12dd2d23) -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.519 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'unmanageApp' -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=unmanageApp) -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove a web application from checks' -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove a web application from checks) -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.520 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'contextPath' -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=contextPath) -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'The application path' -2024-09-20 17:47:16.521 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=The application path) -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@69bb783d) -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.522 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7e6e2f0d) -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.523 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=HostConfig, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Startup event listener for a Host that configures the properties of that Host, and the associated defined contexts, group=Listener, type=org.apache.catalina.startup.HostConfig]) -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - -' -2024-09-20 17:47:16.524 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/users/mbeans-descriptors.xml -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@8273d3b) -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.525 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'MemoryUserDatabase' -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=MemoryUserDatabase) -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.MemoryUserDatabaseMBean' -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.MemoryUserDatabaseMBean) -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'In-memory user and group database' -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=In-memory user and group database) -2024-09-20 17:47:16.526 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Users' -2024-09-20 17:47:16.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Users) -2024-09-20 17:47:16.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'UserDatabase' -2024-09-20 17:47:16.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=UserDatabase) -2024-09-20 17:47:16.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.users.MemoryUserDatabase' -2024-09-20 17:47:16.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.users.MemoryUserDatabase) -2024-09-20 17:47:16.527 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.528 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.528 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.528 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'groups' -2024-09-20 17:47:16.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=groups) -2024-09-20 17:47:16.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of all defined groups' -2024-09-20 17:47:16.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of all defined groups) -2024-09-20 17:47:16.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:16.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:16.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.529 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@73e8ad29) -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.530 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'pathname' -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=pathname) -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Relative or absolute pathname to database file' -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Relative or absolute pathname to database file) -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.531 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@412059f9) -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.532 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'roles' -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=roles) -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of all defined roles' -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of all defined roles) -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.533 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4e390097) -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.534 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'users' -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=users) -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'MBean Names of all defined users' -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=MBean Names of all defined users) -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:16.535 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.536 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7f46228e) -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'readonly' -2024-09-20 17:47:16.537 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=readonly) -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'No persistent save of the user database' -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=No persistent save of the user database) -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.538 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@497159aa) -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'writeable' -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=writeable) -2024-09-20 17:47:16.539 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Check if user database is writeable' -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Check if user database is writeable) -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'impact' to 'INFO' -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo impact=INFO) -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.540 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@add2eec) -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createGroup' -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createGroup) -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create new group and return MBean name' -2024-09-20 17:47:16.541 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create new group and return MBean name) -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'groupname' -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=groupname) -2024-09-20 17:47:16.542 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Group name of the new group' -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Group name of the new group) -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@c66aa98) -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.543 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.544 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'description' -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=description) -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Description of the new group' -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Description of the new group) -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@42fabbc8) -2024-09-20 17:47:16.545 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1850634) -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.546 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createRole' -2024-09-20 17:47:16.547 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createRole) -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create new role and return MBean name' -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create new role and return MBean name) -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.548 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'rolename' -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=rolename) -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role name of the new role' -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role name of the new role) -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@62ccf2a6) -2024-09-20 17:47:16.549 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.550 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.550 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.550 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'description' -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=description) -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Description of the new role' -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Description of the new role) -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.551 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5b47a60d) -2024-09-20 17:47:16.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.552 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.553 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.556 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.558 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.559 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.560 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:16.562 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.563 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.563 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.564 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4cf46256) -2024-09-20 17:47:16.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.565 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.566 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.567 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.567 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.567 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createUser' -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createUser) -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Create new user and return MBean name' -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Create new user and return MBean name) -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.568 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.569 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.569 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.569 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'username' -2024-09-20 17:47:16.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=username) -2024-09-20 17:47:16.570 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'User name of the new user' -2024-09-20 17:47:16.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=User name of the new user) -2024-09-20 17:47:16.572 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.574 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.576 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.577 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.577 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@65e9795a) -2024-09-20 17:47:16.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.578 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.578 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'password' -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=password) -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Password of the new user' -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Password of the new user) -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.579 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@60b5fe83) -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.580 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'fullName' -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=fullName) -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Full name of the new user' -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Full name of the new user) -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.581 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6245b56) -2024-09-20 17:47:16.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.582 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - ' -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.583 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@692d6f16) -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findGroup' -2024-09-20 17:47:16.584 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findGroup) -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return MBean Name of the specified group (if any)' -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return MBean Name of the specified group (if any)) -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.585 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'groupname' -2024-09-20 17:47:16.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=groupname) -2024-09-20 17:47:16.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Group name of the requested group' -2024-09-20 17:47:16.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Group name of the requested group) -2024-09-20 17:47:16.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.586 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@47a0f8c0) -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.587 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@8ae5751) -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.588 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findRole' -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findRole) -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return MBean Name of the specified role (if any)' -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return MBean Name of the specified role (if any)) -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:16.589 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'rolename' -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=rolename) -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role name of the requested role' -2024-09-20 17:47:16.590 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role name of the requested role) -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2c7443f9) -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.591 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2ea3ccbe) -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.592 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findUser' -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findUser) -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Return MBean Name of the specified user (if any)' -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Return MBean Name of the specified user (if any)) -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.593 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'username' -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=username) -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'User name of the requested user' -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=User name of the requested user) -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.594 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6e854752) -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.595 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@14eb910c) -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.596 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeGroup' -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeGroup) -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove existing group (and all user memberships)' -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove existing group (and all user memberships)) -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.597 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'groupname' -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=groupname) -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Group name of the group to remove' -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Group name of the group to remove) -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1a0e63e3) -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.599 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2a789a20) -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.600 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeRole' -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeRole) -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove existing role' -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove existing role) -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.601 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.602 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'rolename' -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=rolename) -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'Role name of the role to remove' -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=Role name of the role to remove) -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.603 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6e03e7ea) -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@26a878d7) -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.604 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeUser' -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeUser) -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Remove existing user (and all group memberships)' -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Remove existing user (and all group memberships)) -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.605 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'username' -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=username) -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'User name of the user to remove' -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=User name of the user to remove) -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.606 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4fd0069a) -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.608 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@21172cda) -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.609 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'save' -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=save) -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Save current users and groups to persistent storage' -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Save current users and groups to persistent storage) -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.610 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@505ab3a5) -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.611 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=MemoryUserDatabase, className=org.apache.catalina.mbeans.MemoryUserDatabaseMBean, description=In-memory user and group database, group=UserDatabase, type=org.apache.catalina.users.MemoryUserDatabase]) -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( -) -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:16.612 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - -' -2024-09-20 17:47:16.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.613 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:16.613 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/connector/mbeans-descriptors.xml -2024-09-20 17:47:16.613 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@35d107b9) -2024-09-20 17:47:16.613 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:16.613 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:16.613 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'CoyoteConnector' -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=CoyoteConnector) -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ConnectorMBean' -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ConnectorMBean) -2024-09-20 17:47:16.614 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Implementation of a Coyote connector' -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Implementation of a Coyote connector) -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Connector' -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Connector) -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.connector.Connector' -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.connector.Connector) -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptCount' -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptCount) -2024-09-20 17:47:16.615 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The accept count for this Connector' -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The accept count for this Connector) -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7a7a334f) -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.617 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'address' -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=address) -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The IP address on which to bind' -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The IP address on which to bind) -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.618 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6213b126) -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.619 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'ajpFlush' -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=ajpFlush) -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Send AJP flush package for each explicit flush' -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Send AJP flush package for each explicit flush) -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.620 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@67d1e15a) -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allowTrace' -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allowTrace) -2024-09-20 17:47:16.621 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Allow disabling TRACE method' -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Allow disabling TRACE method) -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5a80ced6) -2024-09-20 17:47:16.622 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'ciphers' -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=ciphers) -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Comma-separated list of requested cipher suites' -2024-09-20 17:47:16.623 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Comma-separated list of requested cipher suites) -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@71cb7e82) -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.625 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'ciphersUsed' -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=ciphersUsed) -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Array of ciphers suites in use' -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Array of ciphers suites in use) -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to '[Ljava.lang.String;' -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=[Ljava.lang.String;) -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.626 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@eae6b1c) -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.627 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.628 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@669d90a2) -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.630 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionLinger' -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionLinger) -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Linger value on the incoming connection' -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Linger value on the incoming connection) -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.631 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ab714d9) -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.632 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionTimeout' -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionTimeout) -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Timeout value on the incoming connection' -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Timeout value on the incoming connection) -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.633 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@10a25263) -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.634 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'enableLookups' -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=enableLookups) -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The 'enable DNS lookups' flag for this Connector' -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The 'enable DNS lookups' flag for this Connector) -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.635 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6da93de0) -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.636 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'executorName' -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=executorName) -2024-09-20 17:47:16.637 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the executor - if any - associated with this Connector' -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the executor - if any - associated with this Connector) -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.638 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@673ba877) -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.639 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'keepAliveTimeout' -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=keepAliveTimeout) -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The number of seconds Tomcat will wait for a subsequent request before closing the connection' -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The number of seconds Tomcat will wait for a subsequent request before closing the connection) -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.640 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@65287995) -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'localPort' -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=localPort) -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The port number on which this connector is listening to requests. If the special value for port of zero is used then this method will report the actual port bound.' -2024-09-20 17:47:16.641 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The port number on which this connector is listening to requests. If the special value for port of zero is used then this method will report the actual port bound.) -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@679b1e19) -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.642 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxHeaderCount' -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxHeaderCount) -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The maximum number of headers that are allowed by the container. 100 by default. A value of less than 0 means no limit.' -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The maximum number of headers that are allowed by the container. 100 by default. A value of less than 0 means no limit.) -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.644 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@43f96937) -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.646 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxKeepAliveRequests' -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxKeepAliveRequests) -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum number of Keep-Alive requests to honor per connection' -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum number of Keep-Alive requests to honor per connection) -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.647 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@79bb092f) -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxParameterCount' -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxParameterCount) -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The maximum number of parameters (GET plus POST) which will be automatically parsed by the container. 10000 by default. A value of less than 0 means no limit.' -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The maximum number of parameters (GET plus POST) which will be automatically parsed by the container. 10000 by default. A value of less than 0 means no limit.) -2024-09-20 17:47:16.648 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5ff9335c) -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.649 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxPostSize' -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxPostSize) -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum size in bytes of a POST which will be handled by the servlet API provided features' -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum size in bytes of a POST which will be handled by the servlet API provided features) -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.650 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@602d956c) -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.651 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxSavePostSize' -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxSavePostSize) -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum size of a POST which will be saved by the container during authentication' -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum size of a POST which will be saved by the container during authentication) -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.653 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6815f88f) -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.654 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxSwallowSize' -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxSwallowSize) -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The maximum number of request body bytes to be swallowed by Tomcat for an aborted upload' -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The maximum number of request body bytes to be swallowed by Tomcat for an aborted upload) -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.655 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@494666d3) -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.656 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxThreads' -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxThreads) -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The maximum number of request processing threads to be created for the internal Executor. -1 indicates an external Executor is being used.' -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The maximum number of request processing threads to be created for the internal Executor. -1 indicates an external Executor is being used.) -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5f33df74) -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.657 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minSpareThreads' -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minSpareThreads) -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The number of request processing threads that will be created for the internal Executor. -1 indicates an external Executor is being used.' -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The number of request processing threads that will be created for the internal Executor. -1 indicates an external Executor is being used.) -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.658 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@53b9a70b) -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.659 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'packetSize' -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=packetSize) -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The ajp packet size.' -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The ajp packet size.) -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.661 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@142ffc73) -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.662 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'port' -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=port) -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The port number (excluding any offset) on which this connector is configured to listen for requests. The special value of 0 means select a random free port when the socket is bound.' -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The port number (excluding any offset) on which this connector is configured to listen for requests. The special value of 0 means select a random free port when the socket is bound.) -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.663 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6e2570db) -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portOffset' -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portOffset) -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The offset that will be applied to port to determine the actual port number used.' -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The offset that will be applied to port to determine the actual port number used.) -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.664 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2f2cca14) -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.665 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.667 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.668 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portWithOffset' -2024-09-20 17:47:16.671 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portWithOffset) -2024-09-20 17:47:16.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The actual port number (including any offset) on which this connector is configured to listen for requests.' -2024-09-20 17:47:16.673 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The actual port number (including any offset) on which this connector is configured to listen for requests.) -2024-09-20 17:47:16.674 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.676 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.676 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3133a105) -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.677 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.678 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.678 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.679 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processorCache' -2024-09-20 17:47:16.679 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processorCache) -2024-09-20 17:47:16.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The processor cache size.' -2024-09-20 17:47:16.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The processor cache size.) -2024-09-20 17:47:16.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.680 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.681 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5a940f34) -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.682 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'protocol' -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=protocol) -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Coyote protocol handler in use' -2024-09-20 17:47:16.683 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Coyote protocol handler in use) -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.685 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1f720f15) -2024-09-20 17:47:16.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.686 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'protocolHandlerClassName' -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=protocolHandlerClassName) -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Coyote Protocol handler class name' -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Coyote Protocol handler class name) -2024-09-20 17:47:16.687 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@56c71a85) -2024-09-20 17:47:16.688 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'proxyName' -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=proxyName) -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The Server name to which we should pretend requests to this Connector' -2024-09-20 17:47:16.689 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The Server name to which we should pretend requests to this Connector) -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7a50b2d1) -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.690 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'proxyPort' -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=proxyPort) -2024-09-20 17:47:16.691 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The Server port to which we should pretend requests to this Connector' -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The Server port to which we should pretend requests to this Connector) -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.692 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@47ff00) -2024-09-20 17:47:16.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.693 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.694 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'redirectPort' -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=redirectPort) -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The redirect port (excluding any offset) for non-SSL to SSL redirects' -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The redirect port (excluding any offset) for non-SSL to SSL redirects) -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.696 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@fc242ba) -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.697 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'redirectPortWithOffset' -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=redirectPortWithOffset) -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The actual redirect port (including any offset) for non-SSL to SSL redirects.' -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The actual redirect port (including any offset) for non-SSL to SSL redirects.) -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.698 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@613f62f5) -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.699 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'scheme' -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=scheme) -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Protocol name for this Connector (http, https)' -2024-09-20 17:47:16.701 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Protocol name for this Connector (http, https)) -2024-09-20 17:47:16.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.703 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.703 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1e068239) -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.704 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secret' -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secret) -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Authentication secret (I guess ... not in Javadocs)' -2024-09-20 17:47:16.705 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Authentication secret (I guess ... not in Javadocs)) -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'readable' to 'false' -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo readable=false) -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.707 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2106c106) -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.708 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'secure' -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=secure) -2024-09-20 17:47:16.709 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Is this a secure (SSL) Connector?' -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Is this a secure (SSL) Connector?) -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.710 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ccc900e) -2024-09-20 17:47:16.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.711 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.711 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.712 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.712 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sslProtocols' -2024-09-20 17:47:16.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sslProtocols) -2024-09-20 17:47:16.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Comma-separated list of SSL protocol variants to be enabled' -2024-09-20 17:47:16.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Comma-separated list of SSL protocol variants to be enabled) -2024-09-20 17:47:16.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.713 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.713 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.714 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@26fe65a8) -2024-09-20 17:47:16.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.715 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.715 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.715 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.717 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.718 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.718 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.719 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@cc32c04) -2024-09-20 17:47:16.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.720 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.720 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.721 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.721 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.721 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'tcpNoDelay' -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=tcpNoDelay) -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should we use TCP no delay?' -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should we use TCP no delay?) -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.723 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1b5ac26b) -2024-09-20 17:47:16.724 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.725 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.725 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.725 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.726 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.726 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.727 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.728 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.728 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.728 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'threadPriority' -2024-09-20 17:47:16.728 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=threadPriority) -2024-09-20 17:47:16.728 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The thread priority for processors using the internal Executor. -1 indicates an external Executor is being used.' -2024-09-20 17:47:16.728 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The thread priority for processors using the internal Executor. -1 indicates an external Executor is being used.) -2024-09-20 17:47:16.728 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.729 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.729 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@43ce6dee) -2024-09-20 17:47:16.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.731 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'URIEncoding' -2024-09-20 17:47:16.732 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=URIEncoding) -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Character encoding used to decode the URI' -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Character encoding used to decode the URI) -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.733 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1648831a) -2024-09-20 17:47:16.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.734 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.735 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.735 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.735 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useBodyEncodingForURI' -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useBodyEncodingForURI) -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should the body encoding be used for URI query parameters' -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should the body encoding be used for URI query parameters) -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.736 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@37e3edb) -2024-09-20 17:47:16.737 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.739 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.739 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.739 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useIPVHosts' -2024-09-20 17:47:16.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useIPVHosts) -2024-09-20 17:47:16.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should IP-based virtual hosting be used? ' -2024-09-20 17:47:16.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should IP-based virtual hosting be used? ) -2024-09-20 17:47:16.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.740 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.741 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4efaed45) -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.742 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'xpoweredBy' -2024-09-20 17:47:16.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=xpoweredBy) -2024-09-20 17:47:16.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Is generation of X-Powered-By response header enabled/disabled?' -2024-09-20 17:47:16.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Is generation of X-Powered-By response header enabled/disabled?) -2024-09-20 17:47:16.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.744 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7eeb4869) -2024-09-20 17:47:16.745 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.746 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.747 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2c6944fd) -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.748 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.749 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5e133f4d) -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.750 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.751 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.751 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.751 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'pause' -2024-09-20 17:47:16.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=pause) -2024-09-20 17:47:16.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:16.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:16.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.752 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@479a610f) -2024-09-20 17:47:16.753 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.754 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.754 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.754 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'resume' -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=resume) -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.755 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.756 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.756 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6316c195) -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.757 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.758 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5be2fa6) -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.760 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.761 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4290810b) -2024-09-20 17:47:16.762 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.763 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=CoyoteConnector, className=org.apache.catalina.mbeans.ConnectorMBean, description=Implementation of a Coyote connector, group=Connector, type=org.apache.catalina.connector.Connector]) -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( -) -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - -' -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.764 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:16.765 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/valves/mbeans-descriptors.xml -2024-09-20 17:47:16.765 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@5696024f) -2024-09-20 17:47:16.765 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:16.765 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:16.765 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'AccessLogValve' -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=AccessLogValve) -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that generates a web server access log' -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that generates a web server access log) -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:16.766 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.AccessLogValve' -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.AccessLogValve) -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:16.767 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:16.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:16.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.768 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.768 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3596b61) -2024-09-20 17:47:16.769 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.771 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.771 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.771 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'buffered' -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=buffered) -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Flag to buffering.' -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Flag to buffering.) -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.772 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@77eeb7b3) -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.773 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'checkExists' -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=checkExists) -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Check for file existence before logging.' -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Check for file existence before logging.) -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.774 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@31b0f89c) -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.775 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.777 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.777 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.777 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.778 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5752109f) -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.779 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'condition' -2024-09-20 17:47:16.780 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=condition) -2024-09-20 17:47:16.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The value to look for conditional logging. The same as conditionUnless.' -2024-09-20 17:47:16.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The value to look for conditional logging. The same as conditionUnless.) -2024-09-20 17:47:16.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.781 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.781 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1f986b77) -2024-09-20 17:47:16.782 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'conditionIf' -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=conditionIf) -2024-09-20 17:47:16.783 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The value to look for conditional logging.' -2024-09-20 17:47:16.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The value to look for conditional logging.) -2024-09-20 17:47:16.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.785 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.785 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1dc91418) -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.786 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'conditionUnless' -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=conditionUnless) -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The value to look for conditional logging.' -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The value to look for conditional logging.) -2024-09-20 17:47:16.787 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.788 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2b8b7b25) -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.789 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'directory' -2024-09-20 17:47:16.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=directory) -2024-09-20 17:47:16.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The directory in which log files are created' -2024-09-20 17:47:16.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The directory in which log files are created) -2024-09-20 17:47:16.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.790 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6c1a4023) -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.791 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'enabled' -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=enabled) -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Enable Access Logging' -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Enable Access Logging) -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'false' -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=false) -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.792 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@30055d04) -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.793 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.795 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.795 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.795 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'encoding' -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=encoding) -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Character set used to write the log file' -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Character set used to write the log file) -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.796 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6539f6c8) -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.797 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'fileDateFormat' -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=fileDateFormat) -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The format for the date for date based log rotation' -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The format for the date for date based log rotation) -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.798 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@151beb19) -2024-09-20 17:47:16.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.799 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.800 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.800 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.800 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'locale' -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=locale) -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The locale used to format timestamps in the access log lines' -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The locale used to format timestamps in the access log lines) -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.801 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2bbebac1) -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.802 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'pattern' -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=pattern) -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The pattern used to format our access log lines' -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The pattern used to format our access log lines) -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.803 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.805 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.805 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@31c92fcf) -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.806 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'prefix' -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=prefix) -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The prefix that is added to log file filenames' -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The prefix that is added to log file filenames) -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.807 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1b6c0088) -2024-09-20 17:47:16.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.808 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.808 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.809 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'rotatable' -2024-09-20 17:47:16.809 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=rotatable) -2024-09-20 17:47:16.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Flag to indicate automatic log rotation.' -2024-09-20 17:47:16.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Flag to indicate automatic log rotation.) -2024-09-20 17:47:16.810 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.811 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.811 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@516573df) -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.812 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'renameOnRotate' -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=renameOnRotate) -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Flag to defer inclusion of the date stamp in the log file name until rotation.' -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Flag to defer inclusion of the date stamp in the log file name until rotation.) -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.813 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@fd3b380) -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.814 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.815 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.816 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@779c52e2) -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'suffix' -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=suffix) -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The suffix that is added to log file filenames' -2024-09-20 17:47:16.818 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The suffix that is added to log file filenames) -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.819 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@c0f64d9) -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'rotate' -2024-09-20 17:47:16.820 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=rotate) -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Check if the log file is due to be rotated and rotate if it is' -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Check if the log file is due to be rotated and rotate if it is) -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.821 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@760e150c) -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.822 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'rotate' -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=rotate) -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Move the existing log file to a new name' -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Move the existing log file to a new name) -2024-09-20 17:47:16.823 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'newFileName' -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=newFileName) -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'File name to move the log file to.' -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=File name to move the log file to.) -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.824 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@64d3f7fe) -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.825 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@71cdb2c4) -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.826 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.827 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.827 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.827 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=AccessLogValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that generates a web server access log, group=Valve, type=org.apache.catalina.valves.AccessLogValve]) -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.828 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'CrawlerSessionManagerValve' -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=CrawlerSessionManagerValve) -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that ensures web crawlers always use sessions even if no session ID is presented by the client' -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that ensures web crawlers always use sessions even if no session ID is presented by the client) -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.CrawlerSessionManagerValve' -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.CrawlerSessionManagerValve) -2024-09-20 17:47:16.829 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:16.831 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6933988) -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.832 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.833 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@b3ea23) -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.834 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.836 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.836 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.836 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'clientIpSessionId' -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=clientIpSessionId) -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Current Map of client IP address to session ID managed by this Valve' -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Current Map of client IP address to session ID managed by this Valve) -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.util.Map' -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.util.Map) -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.837 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7b2491cc) -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.838 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'crawlerUserAgents' -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=crawlerUserAgents) -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Specify the regular expression used to identify crawlers based in the User-Agent header provided.' -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Specify the regular expression used to identify crawlers based in the User-Agent header provided.) -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'true' -2024-09-20 17:47:16.839 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=true) -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@676357fe) -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.840 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sessionInactiveInterval' -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sessionInactiveInterval) -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Specify the session timeout (in seconds) for a crawler's session.' -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Specify the session timeout (in seconds) for a crawler's session.) -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'true' -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=true) -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.842 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@78a37de3) -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.843 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.844 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@675e7226) -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.845 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=CrawlerSessionManagerValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that ensures web crawlers always use sessions even if no session ID is presented by the client, group=Valve, type=org.apache.catalina.valves.CrawlerSessionManagerValve]) -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.846 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ErrorReportValve' -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ErrorReportValve) -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Implementation of a Valve that outputs HTML error pages' -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Implementation of a Valve that outputs HTML error pages) -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:16.847 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.ErrorReportValve' -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.ErrorReportValve) -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:16.849 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@38ab35f0) -2024-09-20 17:47:16.850 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.851 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.852 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.852 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@450a59bc) -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.853 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.854 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@26a5689b) -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.855 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.856 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'showReport' -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=showReport) -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Enables/Disables full error reports' -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Enables/Disables full error reports) -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.857 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@327ee12b) -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.858 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'showServerInfo' -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=showServerInfo) -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Enables/Disables server info on error pages' -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Enables/Disables server info on error pages) -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@539b5621) -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.859 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - ' -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.860 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ErrorReportValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Implementation of a Valve that outputs HTML error pages, group=Valve, type=org.apache.catalina.valves.ErrorReportValve]) -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.861 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ExtendedAccessLogValve' -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ExtendedAccessLogValve) -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that generates a web server access log' -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that generates a web server access log) -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.862 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:16.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:16.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.ExtendedAccessLogValve' -2024-09-20 17:47:16.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.ExtendedAccessLogValve) -2024-09-20 17:47:16.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.864 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.864 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.864 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.865 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@44cb3257) -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.866 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'buffered' -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=buffered) -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Flag to buffering.' -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Flag to buffering.) -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.867 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@49276be5) -2024-09-20 17:47:16.868 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.869 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.869 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.869 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'checkExists' -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=checkExists) -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Check for file existence before logging.' -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Check for file existence before logging.) -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.870 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.871 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.871 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@c95ac53) -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.872 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.873 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5b6c9be) -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.874 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'condition' -2024-09-20 17:47:16.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=condition) -2024-09-20 17:47:16.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The value to look for conditional logging. The same as conditionUnless.' -2024-09-20 17:47:16.875 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The value to look for conditional logging. The same as conditionUnless.) -2024-09-20 17:47:16.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.876 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.876 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@18f20ad5) -2024-09-20 17:47:16.877 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.878 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.879 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'conditionIf' -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=conditionIf) -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The value to look for conditional logging.' -2024-09-20 17:47:16.880 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The value to look for conditional logging.) -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.881 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6af8226d) -2024-09-20 17:47:16.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.883 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.883 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.883 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'conditionUnless' -2024-09-20 17:47:16.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=conditionUnless) -2024-09-20 17:47:16.884 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The value to look for conditional logging.' -2024-09-20 17:47:16.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The value to look for conditional logging.) -2024-09-20 17:47:16.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.885 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.885 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4b2efc55) -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.886 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.887 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.887 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.887 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'directory' -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=directory) -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The directory in which log files are created' -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The directory in which log files are created) -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.888 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@78e627b7) -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.889 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'enabled' -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=enabled) -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Enable Access Logging' -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Enable Access Logging) -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'false' -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=false) -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.891 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@704a3edc) -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.892 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'encoding' -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=encoding) -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Character set used to write the log file' -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Character set used to write the log file) -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.893 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.894 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5b8a81f2) -2024-09-20 17:47:16.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.895 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.895 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'fileDateFormat' -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=fileDateFormat) -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The format for the date date based log rotation.' -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The format for the date date based log rotation.) -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.896 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@67fa0282) -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'locale' -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=locale) -2024-09-20 17:47:16.897 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The locale used to format timestamps in the access log lines' -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The locale used to format timestamps in the access log lines) -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2ee84a55) -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.899 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'pattern' -2024-09-20 17:47:16.900 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=pattern) -2024-09-20 17:47:16.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The pattern used to format our access log lines' -2024-09-20 17:47:16.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The pattern used to format our access log lines) -2024-09-20 17:47:16.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.901 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.901 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.902 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@ff53d8a) -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.903 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'prefix' -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=prefix) -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The prefix that is added to log file filenames' -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The prefix that is added to log file filenames) -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.904 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@ffa897) -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.905 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'rotatable' -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=rotatable) -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Flag to indicate automatic log rotation.' -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Flag to indicate automatic log rotation.) -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.906 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@37a64418) -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'renameOnRotate' -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=renameOnRotate) -2024-09-20 17:47:16.908 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Flag to defer inclusion of the date stamp in the log file name until rotation.' -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Flag to defer inclusion of the date stamp in the log file name until rotation.) -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5bf01a5b) -2024-09-20 17:47:16.909 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'suffix' -2024-09-20 17:47:16.910 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=suffix) -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The suffix that is added to log file filenames' -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The suffix that is added to log file filenames) -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.912 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7d4f75c2) -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'rotate' -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=rotate) -2024-09-20 17:47:16.913 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Check if the log file is due to be rotated and rotate if it is' -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Check if the log file is due to be rotated and rotate if it is) -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.914 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@89d1ec) -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.915 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'rotate' -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=rotate) -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Move the existing log file to a new name' -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Move the existing log file to a new name) -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.916 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'newFileName' -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=newFileName) -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'File name to move the log file to.' -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=File name to move the log file to.) -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@50ad361) -2024-09-20 17:47:16.917 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.918 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.918 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.918 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5e733359) -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.919 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ExtendedAccessLogValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that generates a web server access log, group=Valve, type=org.apache.catalina.valves.ExtendedAccessLogValve]) -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.920 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'SemaphoreValve' -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=SemaphoreValve) -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that does concurrency control' -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that does concurrency control) -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.SemaphoreValve' -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.SemaphoreValve) -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.922 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.923 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5894bc30) -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.924 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'block' -2024-09-20 17:47:16.925 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=block) -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should this be blocked until a permit is available?' -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should this be blocked until a permit is available?) -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@16dc007f) -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.926 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.927 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@451e481e) -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.929 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'concurrency' -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=concurrency) -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Desired concurrency level' -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Desired concurrency level) -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.930 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@230521f) -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.931 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'fairness' -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=fairness) -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Use a fair semaphore' -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Use a fair semaphore) -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.932 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7fb80b55) -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.933 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'interruptible' -2024-09-20 17:47:16.934 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=interruptible) -2024-09-20 17:47:16.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Should this be blocked interruptibly until a permit is available?' -2024-09-20 17:47:16.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Should this be blocked interruptibly until a permit is available?) -2024-09-20 17:47:16.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.935 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@9912325) -2024-09-20 17:47:16.936 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.937 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.939 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.939 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3e78d4b1) -2024-09-20 17:47:16.940 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.941 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=SemaphoreValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that does concurrency control, group=Valve, type=org.apache.catalina.valves.SemaphoreValve]) -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.942 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'RemoteAddrValve' -2024-09-20 17:47:16.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=RemoteAddrValve) -2024-09-20 17:47:16.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Concrete implementation of RequestFilterValve that filters based on the string representation of the remote client's IP address' -2024-09-20 17:47:16.943 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Concrete implementation of RequestFilterValve that filters based on the string representation of the remote client's IP address) -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.RemoteAddrValve' -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.RemoteAddrValve) -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.944 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'addConnectorPort' -2024-09-20 17:47:16.946 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=addConnectorPort) -2024-09-20 17:47:16.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Append the server connector port to the client IP separated by a semicolon' -2024-09-20 17:47:16.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Append the server connector port to the client IP separated by a semicolon) -2024-09-20 17:47:16.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.947 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.947 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ed8d9cb) -2024-09-20 17:47:16.948 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allow' -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allow) -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The allow expression' -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The allow expression) -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.949 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1859fe6) -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.951 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allowValid' -2024-09-20 17:47:16.952 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allowValid) -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Becomes false if assigned value of allow expression is not syntactically correct' -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Becomes false if assigned value of allow expression is not syntactically correct) -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.953 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@10d0cf8) -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.954 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.955 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@79289d34) -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.956 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.957 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1c6055b) -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deny' -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deny) -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The deny expression' -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The deny expression) -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.958 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2c11c02a) -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.959 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'denyStatus' -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=denyStatus) -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'HTTP response status code that is used when rejecting denied request' -2024-09-20 17:47:16.960 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=HTTP response status code that is used when rejecting denied request) -2024-09-20 17:47:16.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.962 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.962 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4592639c) -2024-09-20 17:47:16.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.963 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'denyValid' -2024-09-20 17:47:16.964 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=denyValid) -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Becomes false if assigned value of deny expression is not syntactically correct' -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Becomes false if assigned value of deny expression is not syntactically correct) -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.965 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@786e8727) -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.966 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'invalidAuthenticationWhenDeny' -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=invalidAuthenticationWhenDeny) -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Send an invalid authentication header instead of deny' -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Send an invalid authentication header instead of deny) -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.967 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4933a9ac) -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.968 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:16.969 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6b812030) -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.970 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'isAllowed' -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=isAllowed) -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Tests whether a client with this IP address value is allowed access by the current valve configuration' -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Tests whether a client with this IP address value is allowed access by the current valve configuration) -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.972 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'ipAddress' -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=ipAddress) -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'IP address to be tested' -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=IP address to be tested) -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.973 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3d59305f) -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:16.974 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3182cf6c) -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:16.975 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=RemoteAddrValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Concrete implementation of RequestFilterValve that filters based on the string representation of the remote client's IP address, group=Valve, type=org.apache.catalina.valves.RemoteAddrValve]) -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:16.976 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.977 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'RemoteHostValve' -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=RemoteHostValve) -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Concrete implementation of RequestFilterValve that filters based on the string representation of the remote client's host name' -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Concrete implementation of RequestFilterValve that filters based on the string representation of the remote client's host name) -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.RemoteHostValve' -2024-09-20 17:47:16.978 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.RemoteHostValve) -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'addConnectorPort' -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=addConnectorPort) -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Append the server connector port to the client IP separated by a semicolon' -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Append the server connector port to the client IP separated by a semicolon) -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.979 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@65287e39) -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.980 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.981 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.981 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.981 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allow' -2024-09-20 17:47:16.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allow) -2024-09-20 17:47:16.982 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The allow expression' -2024-09-20 17:47:16.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The allow expression) -2024-09-20 17:47:16.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.983 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.983 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@74a420c) -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.985 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.986 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.986 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.986 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allowValid' -2024-09-20 17:47:16.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allowValid) -2024-09-20 17:47:16.987 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Becomes false if assigned value of allow expression is not syntactically correct' -2024-09-20 17:47:16.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Becomes false if assigned value of allow expression is not syntactically correct) -2024-09-20 17:47:16.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.988 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@73e55172) -2024-09-20 17:47:16.989 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:16.991 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@543b09cd) -2024-09-20 17:47:16.992 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:16.993 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.994 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@72446cc5) -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.995 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deny' -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deny) -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The deny expression' -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The deny expression) -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.996 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@274b0aa3) -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'denyStatus' -2024-09-20 17:47:16.997 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=denyStatus) -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'HTTP response status code that is used when rejecting denied request' -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=HTTP response status code that is used when rejecting denied request) -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7e7cb1f9) -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:16.998 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'denyValid' -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=denyValid) -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Becomes false if assigned value of deny expression is not syntactically correct' -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Becomes false if assigned value of deny expression is not syntactically correct) -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:16.999 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7285ba9a) -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'invalidAuthenticationWhenDeny' -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=invalidAuthenticationWhenDeny) -2024-09-20 17:47:17.001 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Send an invalid authentication header instead of deny' -2024-09-20 17:47:17.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Send an invalid authentication header instead of deny) -2024-09-20 17:47:17.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.002 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.002 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2376d24b) -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.003 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.004 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5c97ca94) -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.005 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'isAllowed' -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=isAllowed) -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Tests whether a client with this host name is allowed access by the current valve configuration' -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Tests whether a client with this host name is allowed access by the current valve configuration) -2024-09-20 17:47:17.006 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'INFO' -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=INFO) -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'hostName' -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=hostName) -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'description' to 'host name to be tested' -2024-09-20 17:47:17.008 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo description=host name to be tested) -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@477f4b86) -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.009 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@18717899) -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.010 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=RemoteHostValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Concrete implementation of RequestFilterValve that filters based on the string representation of the remote client's host name, group=Valve, type=org.apache.catalina.valves.RemoteHostValve]) -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.011 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.012 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.012 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'RemoteIpValve' -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=RemoteIpValve) -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Valve that sets client information (eg IP address) based on data from a trusted proxy' -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Valve that sets client information (eg IP address) based on data from a trusted proxy) -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.RemoteIpValve' -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.RemoteIpValve) -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.013 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.015 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d801556) -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.016 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'httpServerPort' -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=httpServerPort) -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Value returned by ServletRequest.getServerPort() when the protocolHeader indicates http protocol' -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Value returned by ServletRequest.getServerPort() when the protocolHeader indicates http protocol) -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.017 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6fa1bd18) -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.018 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'httpsServerPort' -2024-09-20 17:47:17.019 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=httpsServerPort) -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Value returned by ServletRequest.getServerPort() when the protocolHeader indicates https protocol' -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Value returned by ServletRequest.getServerPort() when the protocolHeader indicates https protocol) -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@523ff811) -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.020 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'internalProxies' -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=internalProxies) -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Regular expression that matches IP addresses of internal proxies' -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Regular expression that matches IP addresses of internal proxies) -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.022 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4119f77f) -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.023 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'protocolHeader' -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=protocolHeader) -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The protocol header (e.g. "X-Forwarded-Proto")' -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The protocol header (e.g. "X-Forwarded-Proto")) -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.024 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4c3e60af) -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'protocolHeaderHttpsValue' -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=protocolHeaderHttpsValue) -2024-09-20 17:47:17.025 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The value of the protocol header for incoming https request (e.g. "https")' -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The value of the protocol header for incoming https request (e.g. "https")) -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2e954d4d) -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.026 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'proxiesHeader' -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=proxiesHeader) -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The proxies header name (e.g. "X-Forwarded-By")' -2024-09-20 17:47:17.027 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The proxies header name (e.g. "X-Forwarded-By")) -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3c7c7fe) -2024-09-20 17:47:17.028 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'remoteIpHeader' -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=remoteIpHeader) -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The remote IP header name (e.g. "X-Forwarded-For")' -2024-09-20 17:47:17.029 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The remote IP header name (e.g. "X-Forwarded-For")) -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@d6b7af6) -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.030 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.032 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@326f48ec) -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.033 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'trustedProxies' -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=trustedProxies) -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Regular expression that matches IP addresses of trusted proxies' -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Regular expression that matches IP addresses of trusted proxies) -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.034 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@361484c9) -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.035 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=RemoteIpValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Valve that sets client information (eg IP address) based on data from a trusted proxy, group=Valve, type=org.apache.catalina.valves.RemoteIpValve]) -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.036 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StuckThreadDetectionValve' -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StuckThreadDetectionValve) -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Detect long requests for which their thread might be stuck' -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Detect long requests for which their thread might be stuck) -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Valve' -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Valve) -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.valves.StuckThreadDetectionValve' -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.valves.StuckThreadDetectionValve) -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.037 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'asyncSupported' -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=asyncSupported) -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this valve support async reporting.' -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this valve support async reporting.) -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.038 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@b514dc2) -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.039 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:17.040 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5d3b2a94) -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.041 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.042 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.042 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.042 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:17.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:17.043 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:17.044 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.045 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@15db21f7) -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.046 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stuckThreadCount' -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stuckThreadCount) -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Count of the threads currently considered stuck' -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Count of the threads currently considered stuck) -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.047 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@77bcd49) -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.048 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stuckThreadIds' -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stuckThreadIds) -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'IDs of the threads currently considered stuck. Each ID can then be used with the Threading MBean to retrieve data about it.' -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=IDs of the threads currently considered stuck. Each ID can then be used with the Threading MBean to retrieve data about it.) -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long[]' -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long[]) -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.049 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@645af39) -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.050 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stuckThreadNames' -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stuckThreadNames) -2024-09-20 17:47:17.051 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Names of the threads currently considered stuck.' -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Names of the threads currently considered stuck.) -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String[]' -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String[]) -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.052 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2ae4aef) -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.054 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'threshold' -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=threshold) -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Duration in seconds after which a request is considered as stuck' -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Duration in seconds after which a request is considered as stuck) -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.055 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4e3617d4) -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.056 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StuckThreadDetectionValve, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Detect long requests for which their thread might be stuck, group=Valve, type=org.apache.catalina.valves.StuckThreadDetectionValve]) -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( -) -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:17.057 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - -' -2024-09-20 17:47:17.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:17.059 DEBUG 22604 --- [background-preinit] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/tomcat/util/descriptor/web/mbeans-descriptors.xml -2024-09-20 17:47:17.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@17fe9ade) -2024-09-20 17:47:17.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:17.059 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:17.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:17.059 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ContextEnvironment' -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ContextEnvironment) -2024-09-20 17:47:17.060 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ContextEnvironmentMBean' -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ContextEnvironmentMBean) -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Representation of an application environment entry' -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Representation of an application environment entry) -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Resources' -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Resources) -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.tomcat.util.descriptor.web.ContextEnvironment' -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.tomcat.util.descriptor.web.ContextEnvironment) -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.061 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'className' -2024-09-20 17:47:17.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=className) -2024-09-20 17:47:17.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Fully qualified class name of the managed object' -2024-09-20 17:47:17.062 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Fully qualified class name of the managed object) -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ce9c37f) -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.063 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'description' -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=description) -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The description of this environment entry' -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The description of this environment entry) -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.064 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4ce00f3f) -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.065 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of this environment entry' -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of this environment entry) -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.066 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@321629c0) -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'override' -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=override) -2024-09-20 17:47:17.068 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this environment entry allow overrides by the application deployment descriptor' -2024-09-20 17:47:17.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this environment entry allow overrides by the application deployment descriptor) -2024-09-20 17:47:17.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.069 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.069 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@51dd7d36) -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.070 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'type' -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=type) -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The type of this environment entry' -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The type of this environment entry) -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.071 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@235dbe49) -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'value' -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=value) -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The value of this environment entry' -2024-09-20 17:47:17.072 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The value of this environment entry) -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6f08d4ea) -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.073 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - ' -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ContextEnvironment, className=org.apache.catalina.mbeans.ContextEnvironmentMBean, description=Representation of an application environment entry, group=Resources, type=org.apache.tomcat.util.descriptor.web.ContextEnvironment]) -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:17.074 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ContextResource' -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ContextResource) -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ContextResourceMBean' -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ContextResourceMBean) -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Representation of a resource reference for a web application' -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Representation of a resource reference for a web application) -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.075 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Resources' -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Resources) -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.tomcat.util.descriptor.web.ContextResource' -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.tomcat.util.descriptor.web.ContextResource) -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.076 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'auth' -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=auth) -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The authorization requirement for this resource' -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The authorization requirement for this resource) -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6c53b8e2) -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.077 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'description' -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=description) -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The description of this resource' -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The description of this resource) -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.079 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@56dd5c93) -2024-09-20 17:47:17.080 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of this resource' -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of this resource) -2024-09-20 17:47:17.081 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@18bc0ff7) -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'scope' -2024-09-20 17:47:17.082 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=scope) -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The sharing scope of this resource factory' -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The sharing scope of this resource factory) -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@31ba378e) -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.083 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'type' -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=type) -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The type of this environment entry' -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The type of this environment entry) -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.084 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.085 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.085 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@405f0df3) -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - ' -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.086 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ContextResource, className=org.apache.catalina.mbeans.ContextResourceMBean, description=Representation of a resource reference for a web application, group=Resources, type=org.apache.tomcat.util.descriptor.web.ContextResource]) -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - - ) -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'ContextResourceLink' -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=ContextResourceLink) -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ContextResourceLinkMBean' -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ContextResourceLinkMBean) -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Representation of a resource link for a web application' -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Representation of a resource link for a web application) -2024-09-20 17:47:17.087 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Resources' -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Resources) -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.tomcat.util.descriptor.web.ContextResourceLink' -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.tomcat.util.descriptor.web.ContextResourceLink) -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.089 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'global' -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=global) -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The global name of this resource' -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The global name of this resource) -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.090 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7cdaf8af) -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of this resource' -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of this resource) -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.091 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4619374) -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.092 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.093 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'description' -2024-09-20 17:47:17.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=description) -2024-09-20 17:47:17.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The description of this resource' -2024-09-20 17:47:17.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The description of this resource) -2024-09-20 17:47:17.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.094 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.094 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.095 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6487c231) -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'type' -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=type) -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The type of this resource' -2024-09-20 17:47:17.096 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The type of this resource) -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5c0f6bc7) -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.097 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - ' -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=ContextResourceLink, className=org.apache.catalina.mbeans.ContextResourceLinkMBean, description=Representation of a resource link for a web application, group=Resources, type=org.apache.tomcat.util.descriptor.web.ContextResourceLink]) -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.098 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : characters( - - -) -2024-09-20 17:47:17.099 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:17.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:17.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - -' -2024-09-20 17:47:17.099 DEBUG 22604 --- [background-preinit] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.099 DEBUG 22604 --- [background-preinit] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:17.099 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=MBeanFactory -2024-09-20 17:47:17.099 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.catalina.mbeans.MBeanFactory@40021799 Tomcat:type=MBeanFactory -2024-09-20 17:47:17.100 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=NamingResources -2024-09-20 17:47:17.100 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.catalina.deploy.NamingResourcesImpl@332f25c8 Tomcat:type=NamingResources -2024-09-20 17:47:17.100 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Service -2024-09-20 17:47:17.103 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardService[Tomcat] Tomcat:type=Service -2024-09-20 17:47:17.103 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Engine -2024-09-20 17:47:17.104 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardEngine[Tomcat] Tomcat:type=Engine -2024-09-20 17:47:17.104 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Mapper -2024-09-20 17:47:17.104 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:17.104 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/mapper/mbeans-descriptors.xml -2024-09-20 17:47:17.104 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@264c5d07) -2024-09-20 17:47:17.104 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:17.105 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:17.105 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:17.105 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.105 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.105 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.105 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.105 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'Mapper' -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=Mapper) -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Maps requests received by the associated connector to Hosts, Contexts and Wrappers' -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Maps requests received by the associated connector to Hosts, Contexts and Wrappers) -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Mapper' -2024-09-20 17:47:17.106 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Mapper) -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.mapper.MapperListener' -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.mapper.MapperListener) -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.107 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The name of the LifecycleState that this component is currently in' -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The name of the LifecycleState that this component is currently in) -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.108 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@847f3e7) -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.109 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:17.110 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Start' -2024-09-20 17:47:17.112 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Start) -2024-09-20 17:47:17.112 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:17.112 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:17.112 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.112 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.113 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@69cac930) -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.114 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Stop' -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Stop) -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.115 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@19593091) -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.116 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Init' -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Init) -2024-09-20 17:47:17.117 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.118 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5d39f2d8) -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.119 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Destroy' -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Destroy) -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.120 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6ad6fa53) -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.121 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - ' -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=Mapper, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Maps requests received by the associated connector to Hosts, Contexts and Wrappers, group=Mapper, type=org.apache.catalina.mapper.MapperListener]) -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( -) -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:17.123 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - -' -2024-09-20 17:47:17.124 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.124 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:17.124 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.catalina.mapper.MapperListener@55ea2d70 Tomcat:type=Mapper -2024-09-20 17:47:17.124 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Connector,port=8101 -2024-09-20 17:47:17.125 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister Connector[HTTP/1.1-8101] Tomcat:type=Connector,port=8101 -2024-09-20 17:47:17.127 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol parseBodyMethods=POST) -2024-09-20 17:47:17.127 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint parseBodyMethods=POST) -2024-09-20 17:47:17.127 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=ProtocolHandler,port=8101 -2024-09-20 17:47:17.127 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:17.127 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/coyote/mbeans-descriptors.xml -2024-09-20 17:47:17.129 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@67a056f1) -2024-09-20 17:47:17.129 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:17.129 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:17.129 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:17.129 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.129 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.129 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.129 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'RequestGroupInfo' -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=RequestGroupInfo) -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Runtime information of a group of requests' -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Runtime information of a group of requests) -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.130 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'Connector' -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=Connector) -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.coyote.RequestGroupInfo' -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.coyote.RequestGroupInfo) -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.131 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.132 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.132 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.132 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxTime' -2024-09-20 17:47:17.132 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxTime) -2024-09-20 17:47:17.132 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Maximum time to process a request' -2024-09-20 17:47:17.132 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Maximum time to process a request) -2024-09-20 17:47:17.132 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1dab9dd6) -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.133 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'processingTime' -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=processingTime) -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Total time to process the requests' -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Total time to process the requests) -2024-09-20 17:47:17.134 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.135 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.135 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.135 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.135 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.135 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.135 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@247667dd) -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.136 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'requestCount' -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=requestCount) -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of requests processed' -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of requests processed) -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.137 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.144 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.144 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.144 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.144 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.144 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6f099cef) -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.145 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'errorCount' -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=errorCount) -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Number of errors' -2024-09-20 17:47:17.146 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Number of errors) -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.147 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@afb5821) -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.148 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'bytesReceived' -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=bytesReceived) -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Amount of data received, in bytes' -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Amount of data received, in bytes) -2024-09-20 17:47:17.149 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.150 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.151 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4bff2185) -2024-09-20 17:47:17.151 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.151 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.151 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.151 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.151 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.151 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.151 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.152 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.152 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.152 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.152 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.152 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'bytesSent' -2024-09-20 17:47:17.152 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=bytesSent) -2024-09-20 17:47:17.152 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Amount of data sent, in bytes' -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Amount of data sent, in bytes) -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.153 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5c20ffa8) -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.154 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'resetCounters' -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=resetCounters) -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Reset counters' -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Reset counters) -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:17.156 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.157 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7fedfe27) -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.158 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.174 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.174 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.174 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=RequestGroupInfo, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Runtime information of a group of requests, group=Connector, type=org.apache.coyote.RequestGroupInfo]) -2024-09-20 17:47:17.174 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.174 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.175 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.175 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.175 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( -) -2024-09-20 17:47:17.175 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:17.175 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:17.175 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - -' -2024-09-20 17:47:17.175 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.176 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:17.176 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Introspecting -2024-09-20 17:47:17.177 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.net.InetAddress org.apache.coyote.AbstractProtocol.getAddress() -2024-09-20 17:47:17.177 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.coyote.Adapter org.apache.coyote.AbstractProtocol.getAdapter() -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.util.concurrent.Executor org.apache.coyote.AbstractProtocol.getExecutor() -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.coyote.AbstractProtocol.setExecutor(java.util.concurrent.Executor) interface java.util.concurrent.Executor -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.coyote.AbstractProtocol.setAddress(java.net.InetAddress) class java.net.InetAddress -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.coyote.AbstractProtocol.setAdapter(org.apache.coyote.Adapter) interface org.apache.coyote.Adapter -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.util.concurrent.ScheduledExecutorService org.apache.coyote.AbstractProtocol.getUtilityExecutor() -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.coyote.AbstractProtocol.setUtilityExecutor(java.util.concurrent.ScheduledExecutorService) interface java.util.concurrent.ScheduledExecutorService -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute minSpareThreads public int org.apache.coyote.AbstractProtocol.getMinSpareThreads() public void org.apache.coyote.AbstractProtocol.setMinSpareThreads(int) -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLCACertificateFile public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLCACertificateFile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLCACertificateFile(java.lang.String) -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute aprRequired public boolean org.apache.coyote.AbstractProtocol.isAprRequired() null -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute localPort public int org.apache.coyote.AbstractProtocol.getLocalPort() null -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute compression public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getCompression() public void org.apache.coyote.http11.AbstractHttp11Protocol.setCompression(java.lang.String) -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLDisableCompression public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getSSLDisableCompression() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLDisableCompression(boolean) -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute ciphers public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getCiphers() public void org.apache.coyote.http11.AbstractHttp11Protocol.setCiphers(java.lang.String) -2024-09-20 17:47:17.178 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute truststorePass public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getTruststorePass() public void org.apache.coyote.http11.AbstractHttp11Protocol.setTruststorePass(java.lang.String) -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute truststoreProvider public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getTruststoreProvider() public void org.apache.coyote.http11.AbstractHttp11Protocol.setTruststoreProvider(java.lang.String) -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute portWithOffset public int org.apache.coyote.AbstractProtocol.getPortWithOffset() null -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clientCertProvider public java.lang.String org.apache.coyote.AbstractProtocol.getClientCertProvider() public void org.apache.coyote.AbstractProtocol.setClientCertProvider(java.lang.String) -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute nameIndex public synchronized int org.apache.coyote.AbstractProtocol.getNameIndex() null -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLCertificateKeyFile public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLCertificateKeyFile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLCertificateKeyFile(java.lang.String) -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute keystoreType public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getKeystoreType() public void org.apache.coyote.http11.AbstractHttp11Protocol.setKeystoreType(java.lang.String) -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute disableUploadTimeout public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getDisableUploadTimeout() public void org.apache.coyote.http11.AbstractHttp11Protocol.setDisableUploadTimeout(boolean) -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute serverRemoveAppProvidedValues public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getServerRemoveAppProvidedValues() public void org.apache.coyote.http11.AbstractHttp11Protocol.setServerRemoveAppProvidedValues(boolean) -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sslImplementationName public java.lang.String org.apache.coyote.http11.AbstractHttp11JsseProtocol.getSslImplementationName() public void org.apache.coyote.http11.AbstractHttp11JsseProtocol.setSslImplementationName(java.lang.String) -2024-09-20 17:47:17.180 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxExtensionSize public int org.apache.coyote.http11.AbstractHttp11Protocol.getMaxExtensionSize() public void org.apache.coyote.http11.AbstractHttp11Protocol.setMaxExtensionSize(int) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute restrictedUserAgents public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getRestrictedUserAgents() public void org.apache.coyote.http11.AbstractHttp11Protocol.setRestrictedUserAgents(java.lang.String) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxSavePostSize public int org.apache.coyote.http11.AbstractHttp11Protocol.getMaxSavePostSize() public void org.apache.coyote.http11.AbstractHttp11Protocol.setMaxSavePostSize(int) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute server public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getServer() public void org.apache.coyote.http11.AbstractHttp11Protocol.setServer(java.lang.String) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxSwallowSize public int org.apache.coyote.http11.AbstractHttp11Protocol.getMaxSwallowSize() public void org.apache.coyote.http11.AbstractHttp11Protocol.setMaxSwallowSize(int) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLCACertificatePath public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLCACertificatePath() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLCACertificatePath(java.lang.String) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute keystorePass public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getKeystorePass() public void org.apache.coyote.http11.AbstractHttp11Protocol.setKeystorePass(java.lang.String) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute crlFile public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getCrlFile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setCrlFile(java.lang.String) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute rejectIllegalHeaderName public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getRejectIllegalHeaderName() public void org.apache.coyote.http11.AbstractHttp11Protocol.setRejectIllegalHeaderName(boolean) -2024-09-20 17:47:17.181 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLHonorCipherOrder public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getSSLHonorCipherOrder() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLHonorCipherOrder(boolean) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute pollerThreadCount public int org.apache.coyote.http11.Http11NioProtocol.getPollerThreadCount() public void org.apache.coyote.http11.Http11NioProtocol.setPollerThreadCount(int) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLCertificateFile public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLCertificateFile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLCertificateFile(java.lang.String) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute relaxedPathChars public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getRelaxedPathChars() public void org.apache.coyote.http11.AbstractHttp11Protocol.setRelaxedPathChars(java.lang.String) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute processorCache public int org.apache.coyote.AbstractProtocol.getProcessorCache() public void org.apache.coyote.AbstractProtocol.setProcessorCache(int) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute port public int org.apache.coyote.AbstractProtocol.getPort() public void org.apache.coyote.AbstractProtocol.setPort(int) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute connectionTimeout public int org.apache.coyote.AbstractProtocol.getConnectionTimeout() public void org.apache.coyote.AbstractProtocol.setConnectionTimeout(int) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxHeaderCount public int org.apache.coyote.AbstractProtocol.getMaxHeaderCount() public void org.apache.coyote.AbstractProtocol.setMaxHeaderCount(int) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute acceptCount public int org.apache.coyote.AbstractProtocol.getAcceptCount() public void org.apache.coyote.AbstractProtocol.setAcceptCount(int) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute threadPriority public int org.apache.coyote.AbstractProtocol.getThreadPriority() public void org.apache.coyote.AbstractProtocol.setThreadPriority(int) -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute objectName public javax.management.ObjectName org.apache.coyote.AbstractProtocol.getObjectName() null -2024-09-20 17:47:17.182 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute compressibleMimeType public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getCompressibleMimeType() public void org.apache.coyote.http11.AbstractHttp11Protocol.setCompressibleMimeType(java.lang.String) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute pollerThreadPriority public int org.apache.coyote.http11.Http11NioProtocol.getPollerThreadPriority() public void org.apache.coyote.http11.Http11NioProtocol.setPollerThreadPriority(int) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute tcpNoDelay public boolean org.apache.coyote.AbstractProtocol.getTcpNoDelay() public void org.apache.coyote.AbstractProtocol.setTcpNoDelay(boolean) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLVerifyDepth public int org.apache.coyote.http11.AbstractHttp11Protocol.getSSLVerifyDepth() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLVerifyDepth(int) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute trustMaxCertLength public int org.apache.coyote.http11.AbstractHttp11Protocol.getTrustMaxCertLength() public void org.apache.coyote.http11.AbstractHttp11Protocol.setTrustMaxCertLength(int) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute acceptorThreadPriority public int org.apache.coyote.AbstractProtocol.getAcceptorThreadPriority() public void org.apache.coyote.AbstractProtocol.setAcceptorThreadPriority(int) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sslProtocol public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSslProtocol() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSslProtocol(java.lang.String) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sessionCacheSize public int org.apache.coyote.http11.AbstractHttp11Protocol.getSessionCacheSize() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSessionCacheSize(int) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sendfileSupported public boolean org.apache.coyote.AbstractProtocol.isSendfileSupported() null -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute useServerCipherSuitesOrder public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getUseServerCipherSuitesOrder() public void org.apache.coyote.http11.AbstractHttp11Protocol.setUseServerCipherSuitesOrder(boolean) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sessionTimeout public int org.apache.coyote.http11.AbstractHttp11Protocol.getSessionTimeout() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSessionTimeout(int) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute defaultSSLHostConfigName public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getDefaultSSLHostConfigName() public void org.apache.coyote.http11.AbstractHttp11Protocol.setDefaultSSLHostConfigName(java.lang.String) -2024-09-20 17:47:17.183 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLProtocol public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLProtocol() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLProtocol(java.lang.String) -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute name public java.lang.String org.apache.coyote.AbstractProtocol.getName() null -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute compressibleMimeTypes public java.lang.String[] org.apache.coyote.http11.AbstractHttp11Protocol.getCompressibleMimeTypes() null -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLVerifyClient public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLVerifyClient() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLVerifyClient(java.lang.String) -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute useSendfile public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getUseSendfile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setUseSendfile(boolean) -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute keyPass public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getKeyPass() public void org.apache.coyote.http11.AbstractHttp11Protocol.setKeyPass(java.lang.String) -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxThreads public int org.apache.coyote.AbstractProtocol.getMaxThreads() public void org.apache.coyote.AbstractProtocol.setMaxThreads(int) -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute compressionMinSize public int org.apache.coyote.http11.AbstractHttp11Protocol.getCompressionMinSize() public void org.apache.coyote.http11.AbstractHttp11Protocol.setCompressionMinSize(int) -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute keyAlias public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getKeyAlias() public void org.apache.coyote.http11.AbstractHttp11Protocol.setKeyAlias(java.lang.String) -2024-09-20 17:47:17.184 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sslEnabledProtocols public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSslEnabledProtocols() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSslEnabledProtocols(java.lang.String) -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute noCompressionUserAgents public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getNoCompressionUserAgents() public void org.apache.coyote.http11.AbstractHttp11Protocol.setNoCompressionUserAgents(java.lang.String) -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute selectorTimeout public long org.apache.coyote.http11.Http11NioProtocol.getSelectorTimeout() public void org.apache.coyote.http11.Http11NioProtocol.setSelectorTimeout(long) -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute trustManagerClassName public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getTrustManagerClassName() public void org.apache.coyote.http11.AbstractHttp11Protocol.setTrustManagerClassName(java.lang.String) -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLCARevocationFile public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLCARevocationFile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLCARevocationFile(java.lang.String) -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute paused public boolean org.apache.coyote.AbstractProtocol.isPaused() null -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLCipherSuite public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLCipherSuite() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLCipherSuite(java.lang.String) -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute truststoreFile public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getTruststoreFile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setTruststoreFile(java.lang.String) -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute keepAliveTimeout public int org.apache.coyote.AbstractProtocol.getKeepAliveTimeout() public void org.apache.coyote.AbstractProtocol.setKeepAliveTimeout(int) -2024-09-20 17:47:17.185 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute allowedTrailerHeaders public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getAllowedTrailerHeaders() public void org.apache.coyote.http11.AbstractHttp11Protocol.setAllowedTrailerHeaders(java.lang.String) -2024-09-20 17:47:17.186 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute connectionCount public long org.apache.coyote.AbstractProtocol.getConnectionCount() null -2024-09-20 17:47:17.186 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute secure public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getSecure() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSecure(boolean) -2024-09-20 17:47:17.186 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute keystoreProvider public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getKeystoreProvider() public void org.apache.coyote.http11.AbstractHttp11Protocol.setKeystoreProvider(java.lang.String) -2024-09-20 17:47:17.186 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute connectionUploadTimeout public int org.apache.coyote.http11.AbstractHttp11Protocol.getConnectionUploadTimeout() public void org.apache.coyote.http11.AbstractHttp11Protocol.setConnectionUploadTimeout(int) -2024-09-20 17:47:17.186 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLPassword public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLPassword() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLPassword(java.lang.String) -2024-09-20 17:47:17.186 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute truststoreAlgorithm public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getTruststoreAlgorithm() public void org.apache.coyote.http11.AbstractHttp11Protocol.setTruststoreAlgorithm(java.lang.String) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute domain public java.lang.String org.apache.coyote.AbstractProtocol.getDomain() null -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute acceptorThreadCount public int org.apache.coyote.AbstractProtocol.getAcceptorThreadCount() public void org.apache.coyote.AbstractProtocol.setAcceptorThreadCount(int) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxKeepAliveRequests public int org.apache.coyote.http11.AbstractHttp11Protocol.getMaxKeepAliveRequests() public void org.apache.coyote.http11.AbstractHttp11Protocol.setMaxKeepAliveRequests(int) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLCertificateChainFile public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLCertificateChainFile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLCertificateChainFile(java.lang.String) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sniParseLimit public int org.apache.coyote.http11.AbstractHttp11JsseProtocol.getSniParseLimit() public void org.apache.coyote.http11.AbstractHttp11JsseProtocol.setSniParseLimit(int) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute allowHostHeaderMismatch public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getAllowHostHeaderMismatch() public void org.apache.coyote.http11.AbstractHttp11Protocol.setAllowHostHeaderMismatch(boolean) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clientAuth public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getClientAuth() public void org.apache.coyote.http11.AbstractHttp11Protocol.setClientAuth(java.lang.String) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLCARevocationPath public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getSSLCARevocationPath() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLCARevocationPath(java.lang.String) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute algorithm public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getAlgorithm() public void org.apache.coyote.http11.AbstractHttp11Protocol.setAlgorithm(java.lang.String) -2024-09-20 17:47:17.187 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute keystoreFile public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getKeystoreFile() public void org.apache.coyote.http11.AbstractHttp11Protocol.setKeystoreFile(java.lang.String) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxHttpHeaderSize public int org.apache.coyote.http11.AbstractHttp11Protocol.getMaxHttpHeaderSize() public void org.apache.coyote.http11.AbstractHttp11Protocol.setMaxHttpHeaderSize(int) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute relaxedQueryChars public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getRelaxedQueryChars() public void org.apache.coyote.http11.AbstractHttp11Protocol.setRelaxedQueryChars(java.lang.String) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute connectionLinger public int org.apache.coyote.AbstractProtocol.getConnectionLinger() public void org.apache.coyote.AbstractProtocol.setConnectionLinger(int) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLDisableSessionTickets public boolean org.apache.coyote.http11.AbstractHttp11Protocol.getSSLDisableSessionTickets() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLDisableSessionTickets(boolean) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxTrailerSize public int org.apache.coyote.http11.AbstractHttp11Protocol.getMaxTrailerSize() public void org.apache.coyote.http11.AbstractHttp11Protocol.setMaxTrailerSize(int) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute truststoreType public java.lang.String org.apache.coyote.http11.AbstractHttp11Protocol.getTruststoreType() public void org.apache.coyote.http11.AbstractHttp11Protocol.setTruststoreType(java.lang.String) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute portOffset public int org.apache.coyote.AbstractProtocol.getPortOffset() public void org.apache.coyote.AbstractProtocol.setPortOffset(int) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxConnections public int org.apache.coyote.AbstractProtocol.getMaxConnections() public void org.apache.coyote.AbstractProtocol.setMaxConnections(int) -2024-09-20 17:47:17.188 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sSLEnabled public boolean org.apache.coyote.http11.AbstractHttp11Protocol.isSSLEnabled() public void org.apache.coyote.http11.AbstractHttp11Protocol.setSSLEnabled(boolean) -2024-09-20 17:47:17.189 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Setting name: org.apache.coyote.http11.Http11NioProtocol -2024-09-20 17:47:17.189 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.coyote.http11.Http11NioProtocol@2f879bab Tomcat:type=ProtocolHandler,port=8101 -2024-09-20 17:47:17.189 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=GlobalRequestProcessor,name="http-nio-8101" -2024-09-20 17:47:17.189 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister BaseModelMbean[null] Tomcat:type=GlobalRequestProcessor,name="http-nio-8101" -2024-09-20 17:47:17.189 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister null Tomcat:type=GlobalRequestProcessor,name="http-nio-8101" -2024-09-20 17:47:17.190 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=ThreadPool,name="http-nio-8101" -2024-09-20 17:47:17.190 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:17.190 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/tomcat/util/net/mbeans-descriptors.xml -2024-09-20 17:47:17.190 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@56ccd751) -2024-09-20 17:47:17.190 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:17.190 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.191 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'NioEndpoint' -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=NioEndpoint) -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ClassNameMBean' -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ClassNameMBean) -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'ThreadPool' -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=ThreadPool) -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.tomcat.util.net.NioEndpoint' -2024-09-20 17:47:17.192 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.tomcat.util.net.NioEndpoint) -2024-09-20 17:47:17.193 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.193 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.193 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.193 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.193 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.194 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.194 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.194 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.194 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptCount' -2024-09-20 17:47:17.194 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptCount) -2024-09-20 17:47:17.194 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.194 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.194 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2d66530f) -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.195 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.196 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptorThreadCount' -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptorThreadCount) -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.197 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1d207fad) -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.198 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptorThreadPriority' -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptorThreadPriority) -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.199 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@72ed9aad) -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.200 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.201 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.201 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.201 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.201 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.201 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.201 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'alpnSupported' -2024-09-20 17:47:17.202 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=alpnSupported) -2024-09-20 17:47:17.202 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.202 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.202 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.202 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.202 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.202 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.202 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4690f583) -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.203 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.204 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'bindOnInit' -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=bindOnInit) -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.205 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@59712875) -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.207 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionCount' -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionCount) -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.208 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@47b2e9e1) -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.209 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.210 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.210 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.210 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionLinger' -2024-09-20 17:47:17.210 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionLinger) -2024-09-20 17:47:17.210 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.210 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.210 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@59942b48) -2024-09-20 17:47:17.211 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.213 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionTimeout' -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionTimeout) -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.214 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1869f114) -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.215 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'currentThreadCount' -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=currentThreadCount) -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.216 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.217 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.217 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.217 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.217 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.217 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.217 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.217 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.217 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.218 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.218 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.218 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@488b50ec) -2024-09-20 17:47:17.218 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.218 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.218 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.218 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.218 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'currentThreadsBusy' -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=currentThreadsBusy) -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.219 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.221 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.221 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.221 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.221 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.221 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.222 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.222 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.222 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.222 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@18a645fd) -2024-09-20 17:47:17.222 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.222 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.222 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.223 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'daemon' -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=daemon) -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.224 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6090f3ca) -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.225 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultSSLHostConfigName' -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultSSLHostConfigName) -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.226 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.227 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.227 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.227 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.227 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.227 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.227 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@37a64f9d) -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.228 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deferAccept' -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deferAccept) -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.229 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@25b865b5) -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.230 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'domain' -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=domain) -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.231 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@f9b5552) -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.232 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'executorTerminationTimeoutMillis' -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=executorTerminationTimeoutMillis) -2024-09-20 17:47:17.233 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.234 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.235 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6872f9c8) -2024-09-20 17:47:17.235 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.235 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.235 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.235 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.235 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.235 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.236 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.236 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.236 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.236 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.236 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.236 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'keepAliveCount' -2024-09-20 17:47:17.236 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=keepAliveCount) -2024-09-20 17:47:17.237 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.237 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.237 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.237 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.237 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.237 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.237 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.237 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6d2d99fc) -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.238 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'keepAliveTimeout' -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=keepAliveTimeout) -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.239 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@bdecc21) -2024-09-20 17:47:17.240 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.241 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.241 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.241 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.241 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.241 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'localPort' -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=localPort) -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.242 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.243 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.243 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.243 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.243 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.243 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.243 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.243 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.243 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5e3a39cd) -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.244 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxConnections' -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxConnections) -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.245 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@21f9277b) -2024-09-20 17:47:17.246 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.247 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxKeepAliveRequests' -2024-09-20 17:47:17.248 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxKeepAliveRequests) -2024-09-20 17:47:17.248 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.248 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.248 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.248 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.248 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.248 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.248 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@201aa8c1) -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.249 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxThreads' -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxThreads) -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.250 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.252 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.252 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5d58c727) -2024-09-20 17:47:17.252 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.253 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.253 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.253 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.253 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.253 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.253 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minSpareThreads' -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minSpareThreads) -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.254 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@52a36910) -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.255 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'modelerType' -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=modelerType) -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.256 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.257 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3a095ec0) -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.258 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.259 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4f20a5e0) -2024-09-20 17:47:17.260 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.260 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.260 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.260 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.260 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.260 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.260 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'paused' -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=paused) -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.261 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.262 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@54da32dc) -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.263 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'pollerThreadCount' -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=pollerThreadCount) -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.264 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1d782abe) -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.265 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'pollerThreadPriority' -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=pollerThreadPriority) -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.266 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.267 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.267 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.267 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6df7988f) -2024-09-20 17:47:17.267 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.267 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.267 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.267 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.267 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'port' -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=port) -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.268 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.269 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.269 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.269 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.269 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.269 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@27b22f74) -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.270 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portOffset' -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portOffset) -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.271 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@22fba58c) -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portWithOffset' -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portWithOffset) -2024-09-20 17:47:17.272 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.273 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7e8a46b7) -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.274 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'running' -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=running) -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.275 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2fe88a09) -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.276 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.277 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.277 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.277 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.277 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.277 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.277 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.277 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.277 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sSLEnabled' -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sSLEnabled) -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.278 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1917d90f) -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.279 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'selectorTimeout' -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=selectorTimeout) -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@66bfd864) -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.280 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sniParseLimit' -2024-09-20 17:47:17.282 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sniParseLimit) -2024-09-20 17:47:17.283 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.283 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.283 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.283 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.283 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.283 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.283 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4aac85fa) -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.284 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.285 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.285 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.285 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.285 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sslImplementation' -2024-09-20 17:47:17.285 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sslImplementation) -2024-09-20 17:47:17.285 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.tomcat.util.net.SSLImplementation' -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.tomcat.util.net.SSLImplementation) -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.286 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@21fff664) -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.287 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sslImplementationName' -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sslImplementationName) -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.288 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6079cf5) -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.289 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'tcpNoDelay' -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=tcpNoDelay) -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.290 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1e6308a9) -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.291 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'threadPriority' -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=threadPriority) -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.292 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.293 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.293 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.293 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.293 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.293 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@30cecdca) -2024-09-20 17:47:17.293 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.293 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.293 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.294 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.294 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.294 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.294 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.294 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.295 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.295 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.295 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.295 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useInheritedChannel' -2024-09-20 17:47:17.295 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useInheritedChannel) -2024-09-20 17:47:17.295 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.295 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.295 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6edc4161) -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.296 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.297 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.297 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.297 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.297 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.297 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.297 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.297 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.297 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.298 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.298 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useSendfile' -2024-09-20 17:47:17.298 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useSendfile) -2024-09-20 17:47:17.298 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.298 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.298 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.298 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.298 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.299 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.299 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.301 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.302 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.305 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.306 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5486887b) -2024-09-20 17:47:17.308 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.309 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.309 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.309 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.309 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.309 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addNegotiatedProtocol' -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addNegotiatedProtocol) -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.310 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.311 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.311 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.311 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.311 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.311 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.311 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.312 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5226e402) -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.313 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1440c311) -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.314 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'bind' -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=bind) -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.315 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@189b5fb1) -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.316 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'closeServerSocketGraceful' -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=closeServerSocketGraceful) -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.317 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@783ec989) -2024-09-20 17:47:17.318 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.319 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.319 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.319 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.319 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.319 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.319 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.319 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.320 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.320 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.320 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.320 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createExecutor' -2024-09-20 17:47:17.320 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createExecutor) -2024-09-20 17:47:17.320 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.320 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.322 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1ddd3478) -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.323 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.324 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@f973499) -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.325 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findSslHostConfigs' -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findSslHostConfigs) -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Lorg.apache.tomcat.util.net.SSLHostConfig;' -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Lorg.apache.tomcat.util.net.SSLHostConfig;) -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.326 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.327 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.327 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.327 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4d33940d) -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.328 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getAttribute' -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getAttribute) -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.Object' -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.Object) -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.329 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.330 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.330 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.331 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.331 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.331 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.331 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.331 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.331 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.332 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@43cf6ea3) -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.333 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@37c5fc56) -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.334 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.335 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getProperty' -2024-09-20 17:47:17.335 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getProperty) -2024-09-20 17:47:17.335 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:17.335 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:17.335 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.335 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.335 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.336 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@1c025cb) -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.337 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@50825a02) -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.338 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.339 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.339 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.339 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.339 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.339 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.339 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.339 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.339 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'hasNegotiableProtocols' -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=hasNegotiableProtocols) -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.340 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@68809cc7) -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.341 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.342 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.342 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.342 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.342 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:17.343 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:17.343 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.343 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.343 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@703feacd) -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.344 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.345 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.345 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.345 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.345 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.345 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.345 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.345 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.346 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.346 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.346 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'pause' -2024-09-20 17:47:17.346 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=pause) -2024-09-20 17:47:17.346 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.346 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.346 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.346 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.347 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.347 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.347 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.347 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.347 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.347 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.347 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7051777c) -2024-09-20 17:47:17.347 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.348 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.348 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.348 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.348 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.348 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.348 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.348 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.348 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.349 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.349 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.349 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'reloadSslHostConfig' -2024-09-20 17:47:17.349 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=reloadSslHostConfig) -2024-09-20 17:47:17.349 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.349 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.349 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.349 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.350 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.350 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.350 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.350 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.350 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.350 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.350 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.350 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.351 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.351 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.351 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.351 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.351 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.352 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.352 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.352 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.352 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.352 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.352 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3241713e) -2024-09-20 17:47:17.352 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.353 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.354 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.354 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.354 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5ecba515) -2024-09-20 17:47:17.354 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.354 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.354 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.354 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.354 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.355 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.355 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.356 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.356 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.356 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.356 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.356 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'reloadSslHostConfigs' -2024-09-20 17:47:17.356 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=reloadSslHostConfigs) -2024-09-20 17:47:17.356 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.357 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.357 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.357 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.357 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.357 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.357 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.358 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.358 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.358 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.358 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@512d4583) -2024-09-20 17:47:17.358 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.358 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.358 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.359 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.359 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.359 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.359 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.359 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.359 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.359 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.359 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeSslHostConfig' -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeSslHostConfig) -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'org.apache.tomcat.util.net.SSLHostConfig' -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=org.apache.tomcat.util.net.SSLHostConfig) -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.360 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.361 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.361 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.361 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.361 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.362 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.363 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.363 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.363 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2abc224d) -2024-09-20 17:47:17.363 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.363 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.363 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.363 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.363 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.364 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.364 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.364 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.364 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.364 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.364 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.364 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.364 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@13cd7ea5) -2024-09-20 17:47:17.365 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.365 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.365 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.365 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.365 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.365 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.365 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.365 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.366 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.366 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.366 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.366 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'resume' -2024-09-20 17:47:17.366 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=resume) -2024-09-20 17:47:17.366 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.366 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.367 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.367 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.367 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.367 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.367 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.367 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.367 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.367 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.368 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@102d92c4) -2024-09-20 17:47:17.368 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.368 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.368 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.368 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.368 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.369 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.369 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.369 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.370 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.370 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.370 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.371 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'setProperty' -2024-09-20 17:47:17.371 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=setProperty) -2024-09-20 17:47:17.371 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:17.371 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:17.371 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.371 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.371 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.371 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.373 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.373 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.373 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.373 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.373 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.373 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.374 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.374 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.374 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.374 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.374 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.374 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.374 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.375 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.375 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.375 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.375 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2b97cc1f) -2024-09-20 17:47:17.375 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.376 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.376 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.376 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.376 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.376 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.376 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.377 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.377 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.377 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.377 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.377 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param1' -2024-09-20 17:47:17.378 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param1) -2024-09-20 17:47:17.378 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.378 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.378 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.378 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.378 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.378 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.378 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.379 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.379 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.379 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.379 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@60723d6a) -2024-09-20 17:47:17.379 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.380 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.380 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.380 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.380 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.380 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.380 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.380 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:17.380 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.381 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.381 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.381 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.381 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@18324f97) -2024-09-20 17:47:17.381 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.382 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.382 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.382 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.382 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.382 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.382 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.382 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.383 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.383 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.383 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.383 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'shutdownExecutor' -2024-09-20 17:47:17.383 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=shutdownExecutor) -2024-09-20 17:47:17.383 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.383 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.383 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@64f555e7) -2024-09-20 17:47:17.384 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.385 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.385 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.385 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.385 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.385 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.385 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.385 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.386 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@71178a52) -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.387 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.388 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.388 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.388 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.388 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.388 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.388 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.388 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.388 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'startInternal' -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=startInternal) -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.389 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.390 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.390 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.390 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.390 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@ff6077) -2024-09-20 17:47:17.390 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.390 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.390 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.390 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.391 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.391 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.391 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.391 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.392 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.392 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.392 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.392 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:17.392 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:17.392 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.392 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.392 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.393 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.393 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.393 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.393 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.394 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.394 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.394 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.394 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@abbc908) -2024-09-20 17:47:17.394 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.395 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.395 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.395 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.395 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.395 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.395 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.395 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.395 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.396 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.396 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.396 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stopInternal' -2024-09-20 17:47:17.396 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stopInternal) -2024-09-20 17:47:17.396 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.396 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.396 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@44afefd5) -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.397 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.398 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.398 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.398 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.398 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.398 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.398 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'unbind' -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=unbind) -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.399 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.400 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.400 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.400 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.400 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.400 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.400 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.400 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@9a7a808) -2024-09-20 17:47:17.400 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.401 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.401 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.401 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.401 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.401 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.401 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.402 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:17.403 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.403 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.404 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.404 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.404 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=NioEndpoint, className=org.apache.catalina.mbeans.ClassNameMBean, description=null, group=ThreadPool, type=org.apache.tomcat.util.net.NioEndpoint]) -2024-09-20 17:47:17.404 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.404 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.404 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.404 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.404 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'Nio2Endpoint' -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=Nio2Endpoint) -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ClassNameMBean' -2024-09-20 17:47:17.405 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ClassNameMBean) -2024-09-20 17:47:17.406 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.406 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.406 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'ThreadPool' -2024-09-20 17:47:17.406 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=ThreadPool) -2024-09-20 17:47:17.406 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.tomcat.util.net.Nio2Endpoint' -2024-09-20 17:47:17.406 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.tomcat.util.net.Nio2Endpoint) -2024-09-20 17:47:17.406 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.406 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptCount' -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptCount) -2024-09-20 17:47:17.407 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.409 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@72209d93) -2024-09-20 17:47:17.410 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.410 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.410 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.410 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.411 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.411 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.411 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.411 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.412 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.412 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.412 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.412 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptorThreadCount' -2024-09-20 17:47:17.413 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptorThreadCount) -2024-09-20 17:47:17.413 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.413 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.413 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.413 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.413 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.413 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2687f956) -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.414 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptorThreadPriority' -2024-09-20 17:47:17.415 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptorThreadPriority) -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.416 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1ded7b14) -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.417 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.418 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.418 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.418 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.418 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'alpnSupported' -2024-09-20 17:47:17.418 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=alpnSupported) -2024-09-20 17:47:17.419 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.420 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.420 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.420 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.420 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.420 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.420 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.421 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.421 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.421 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.421 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.421 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.421 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.421 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.421 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@29be7749) -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.422 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'bindOnInit' -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=bindOnInit) -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.423 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.424 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.424 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.424 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.424 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.424 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5f84abe8) -2024-09-20 17:47:17.424 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.424 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.424 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.425 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionCount' -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionCount) -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.426 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.427 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.427 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.427 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.427 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.428 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4650a407) -2024-09-20 17:47:17.428 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.428 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.428 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.429 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.429 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.429 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.429 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.430 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.430 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.430 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.430 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.430 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionLinger' -2024-09-20 17:47:17.430 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionLinger) -2024-09-20 17:47:17.430 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.431 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@30135202) -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.432 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.433 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.433 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.433 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.433 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionTimeout' -2024-09-20 17:47:17.433 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionTimeout) -2024-09-20 17:47:17.433 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.433 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6a4d7f76) -2024-09-20 17:47:17.434 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.435 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.435 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.435 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.435 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.435 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.436 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.436 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.437 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.437 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.437 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.438 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'currentThreadCount' -2024-09-20 17:47:17.438 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=currentThreadCount) -2024-09-20 17:47:17.438 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.438 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.438 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.439 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.439 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.439 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.439 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.440 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.440 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.440 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.440 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.440 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.440 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@10ec523c) -2024-09-20 17:47:17.440 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.440 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'currentThreadsBusy' -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=currentThreadsBusy) -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.441 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@53dfacba) -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.443 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.444 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.444 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.445 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.445 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.445 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.445 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.445 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.446 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.446 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.446 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'daemon' -2024-09-20 17:47:17.446 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=daemon) -2024-09-20 17:47:17.446 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.446 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.446 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.447 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.447 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.447 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.447 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.447 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.447 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.447 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@79767781) -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.448 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultSSLHostConfigName' -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultSSLHostConfigName) -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.449 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@78411116) -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.450 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.451 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.451 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.451 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.451 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.451 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.451 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.451 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.452 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deferAccept' -2024-09-20 17:47:17.452 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deferAccept) -2024-09-20 17:47:17.452 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.452 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.452 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.452 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.453 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.453 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.453 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.453 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.453 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.453 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@aced190) -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.454 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'domain' -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=domain) -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.455 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@245a060f) -2024-09-20 17:47:17.456 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.457 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'executorTerminationTimeoutMillis' -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=executorTerminationTimeoutMillis) -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.458 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6edaa77a) -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.459 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.460 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.460 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.460 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.460 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'keepAliveCount' -2024-09-20 17:47:17.461 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=keepAliveCount) -2024-09-20 17:47:17.461 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.461 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.461 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.461 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.461 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.462 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.462 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.462 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.462 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.463 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.463 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.463 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.463 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1e63d216) -2024-09-20 17:47:17.463 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.464 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.464 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.464 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.464 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.464 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.465 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.465 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.465 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.465 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.465 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.465 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'keepAliveTimeout' -2024-09-20 17:47:17.465 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=keepAliveTimeout) -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.466 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.467 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.467 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@62ddd21b) -2024-09-20 17:47:17.467 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.467 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.467 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.467 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.468 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.468 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.468 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.468 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.468 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.468 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.468 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.469 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'localPort' -2024-09-20 17:47:17.469 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=localPort) -2024-09-20 17:47:17.469 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.469 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.470 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.470 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.470 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.470 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.470 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.470 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.471 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.471 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.471 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.471 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.471 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@16c3ca31) -2024-09-20 17:47:17.471 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.471 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.471 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.472 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.472 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.472 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.472 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.472 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.472 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.472 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxConnections' -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxConnections) -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.473 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.474 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.474 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.474 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2d195ee4) -2024-09-20 17:47:17.474 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.474 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.475 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.475 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.475 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.475 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.475 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.475 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.475 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.475 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.476 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.476 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxKeepAliveRequests' -2024-09-20 17:47:17.476 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxKeepAliveRequests) -2024-09-20 17:47:17.476 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.476 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.476 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.476 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.477 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.477 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.477 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.477 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.477 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.478 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.478 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2d6aca33) -2024-09-20 17:47:17.478 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.479 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.479 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.479 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.479 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.480 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.480 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.480 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.480 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.480 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.480 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.481 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxThreads' -2024-09-20 17:47:17.481 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxThreads) -2024-09-20 17:47:17.481 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.481 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.481 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.482 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.482 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.482 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.482 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.482 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.483 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.483 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.483 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@21ab988f) -2024-09-20 17:47:17.483 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.483 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.484 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.484 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.484 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.484 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.484 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.485 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.485 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.485 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.485 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.486 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minSpareThreads' -2024-09-20 17:47:17.486 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minSpareThreads) -2024-09-20 17:47:17.486 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.486 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.486 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.486 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.486 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.487 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.487 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.487 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.487 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.487 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.487 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@29314cc9) -2024-09-20 17:47:17.487 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.488 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.488 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.488 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.488 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.488 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.488 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.488 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.488 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'modelerType' -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=modelerType) -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.489 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.490 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.490 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.490 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.490 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.490 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.490 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.490 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.491 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4e38d975) -2024-09-20 17:47:17.491 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.491 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.491 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.491 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.491 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.491 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.492 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.492 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.492 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.492 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.492 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.492 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:17.492 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:17.492 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.493 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.493 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.493 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.493 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.493 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.493 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.495 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.495 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.495 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.495 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@35f8a9d3) -2024-09-20 17:47:17.495 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.495 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.495 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.496 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.496 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.496 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.496 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.496 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'paused' -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=paused) -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.497 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.498 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@48ea2003) -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.499 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'port' -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=port) -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.500 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.501 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.501 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.501 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.501 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.501 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.501 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6b1e7ad3) -2024-09-20 17:47:17.501 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.501 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.502 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.502 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.502 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.502 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.502 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.502 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.504 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.504 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.504 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.504 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portOffset' -2024-09-20 17:47:17.505 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portOffset) -2024-09-20 17:47:17.505 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.505 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.505 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.505 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@63e5e5b4) -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.506 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.507 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portWithOffset' -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portWithOffset) -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.508 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@13a37e2a) -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.509 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.510 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.510 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.510 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.510 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.510 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.510 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.511 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'running' -2024-09-20 17:47:17.511 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=running) -2024-09-20 17:47:17.511 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.511 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.511 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.511 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.511 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.512 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.512 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.512 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.512 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.512 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.512 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.512 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.513 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.513 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.513 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@a50ae65) -2024-09-20 17:47:17.513 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.513 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.513 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.513 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.513 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sSLEnabled' -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sSLEnabled) -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.514 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1280851e) -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.515 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sniParseLimit' -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sniParseLimit) -2024-09-20 17:47:17.516 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5e840abf) -2024-09-20 17:47:17.517 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.518 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.518 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.518 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.518 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.518 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.519 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.519 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.519 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.519 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.519 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.519 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sslImplementation' -2024-09-20 17:47:17.520 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sslImplementation) -2024-09-20 17:47:17.520 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'org.apache.tomcat.util.net.SSLImplementation' -2024-09-20 17:47:17.520 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=org.apache.tomcat.util.net.SSLImplementation) -2024-09-20 17:47:17.520 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.520 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.520 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.521 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.521 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.521 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.521 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.521 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.521 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.521 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@56de6d6b) -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sslImplementationName' -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sslImplementationName) -2024-09-20 17:47:17.522 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5972d253) -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.524 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.525 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'tcpNoDelay' -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=tcpNoDelay) -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.526 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.527 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.527 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4fcc0416) -2024-09-20 17:47:17.527 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.527 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.527 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.528 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.528 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.528 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.528 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.528 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.528 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.528 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.528 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.529 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'threadPriority' -2024-09-20 17:47:17.529 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=threadPriority) -2024-09-20 17:47:17.529 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.529 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.529 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.529 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@31e32ea2) -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.530 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.531 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.531 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.531 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.531 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.531 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.532 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.532 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.532 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.532 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.532 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useSendfile' -2024-09-20 17:47:17.532 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useSendfile) -2024-09-20 17:47:17.532 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.533 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.534 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@1473b8c0) -2024-09-20 17:47:17.534 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.534 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.534 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.534 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.534 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.535 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.535 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.535 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.535 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.535 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.535 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.535 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addNegotiatedProtocol' -2024-09-20 17:47:17.535 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addNegotiatedProtocol) -2024-09-20 17:47:17.536 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.536 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.536 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.536 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.536 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.537 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.537 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.537 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.537 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.537 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.538 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.538 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.538 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.538 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.538 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5b5c0057) -2024-09-20 17:47:17.539 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.540 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@749f539e) -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.541 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'bind' -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=bind) -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.542 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5ca1f591) -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.543 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.544 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.544 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.544 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'closeServerSocketGraceful' -2024-09-20 17:47:17.544 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=closeServerSocketGraceful) -2024-09-20 17:47:17.544 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.544 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.545 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.545 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.545 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.545 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.545 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.545 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.546 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.546 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.546 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@551de37d) -2024-09-20 17:47:17.546 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.546 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.546 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.546 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.547 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.547 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.547 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.547 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.547 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.547 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.548 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.548 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createExecutor' -2024-09-20 17:47:17.548 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createExecutor) -2024-09-20 17:47:17.548 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.548 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.548 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.548 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.548 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6ef81f31) -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.549 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.550 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6075b2d3) -2024-09-20 17:47:17.551 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.552 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.552 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.552 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.552 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.553 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.553 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.553 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.553 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.554 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.554 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.554 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findSslHostConfigs' -2024-09-20 17:47:17.554 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findSslHostConfigs) -2024-09-20 17:47:17.554 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Lorg.apache.tomcat.util.net.SSLHostConfig;' -2024-09-20 17:47:17.554 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Lorg.apache.tomcat.util.net.SSLHostConfig;) -2024-09-20 17:47:17.554 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.555 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.555 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.555 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.555 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.555 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.555 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.555 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.555 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@33abde31) -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.556 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getAttribute' -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getAttribute) -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.Object' -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.Object) -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.557 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.558 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@997d532) -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.559 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.560 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.560 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.560 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.561 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.561 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.561 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.561 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@273842a6) -2024-09-20 17:47:17.562 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.562 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.562 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.562 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.563 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.563 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.563 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.563 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getProperty' -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getProperty) -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.564 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.566 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.566 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.566 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.566 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.566 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.566 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.566 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.566 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.567 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.567 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.567 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.567 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.567 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.567 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.568 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.568 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.568 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.568 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6a969fb8) -2024-09-20 17:47:17.568 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.568 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.568 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.569 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.569 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.569 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.569 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.569 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.570 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.570 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.570 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.570 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.571 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7a18e8d) -2024-09-20 17:47:17.571 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.571 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.571 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.571 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.571 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.571 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'hasNegotiableProtocols' -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=hasNegotiableProtocols) -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.572 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3028e50e) -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.573 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.575 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.576 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.576 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.576 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.576 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.576 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5560bcdf) -2024-09-20 17:47:17.576 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.576 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.576 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.577 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.577 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.578 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.578 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.578 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.579 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.579 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.579 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.579 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'pause' -2024-09-20 17:47:17.579 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=pause) -2024-09-20 17:47:17.580 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.580 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.580 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.580 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.580 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.580 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.581 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.581 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.581 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.581 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.581 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@b558294) -2024-09-20 17:47:17.581 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.582 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.582 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.582 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.582 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.582 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.582 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.582 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.582 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'reloadSslHostConfig' -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=reloadSslHostConfig) -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.583 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.584 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@bb095) -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.585 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.586 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.586 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.586 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.586 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.586 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.586 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.586 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.587 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@777c350f) -2024-09-20 17:47:17.587 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.587 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.587 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.587 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.587 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.588 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.588 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.588 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.588 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.588 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.588 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.588 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'reloadSslHostConfigs' -2024-09-20 17:47:17.588 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=reloadSslHostConfigs) -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.589 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@27aae97b) -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.590 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.591 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.591 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeSslHostConfig' -2024-09-20 17:47:17.591 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeSslHostConfig) -2024-09-20 17:47:17.591 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'org.apache.tomcat.util.net.SSLHostConfig' -2024-09-20 17:47:17.591 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=org.apache.tomcat.util.net.SSLHostConfig) -2024-09-20 17:47:17.591 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.591 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.591 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.592 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.593 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@4c9e38) -2024-09-20 17:47:17.595 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.595 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.595 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.595 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.595 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.596 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.596 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.596 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.596 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.596 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.596 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.597 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.597 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5d1e09bc) -2024-09-20 17:47:17.597 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.597 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.597 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.597 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'resume' -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=resume) -2024-09-20 17:47:17.598 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.599 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4bdc8b5d) -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.600 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'setProperty' -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=setProperty) -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.601 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.602 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.602 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.602 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.603 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.603 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.603 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.603 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.603 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.603 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@3bcd426c) -2024-09-20 17:47:17.604 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.605 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param1' -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param1) -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.606 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@5f14a673) -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:17.607 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@726a17c4) -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.608 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.609 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.609 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.609 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.609 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.609 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'shutdownExecutor' -2024-09-20 17:47:17.609 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=shutdownExecutor) -2024-09-20 17:47:17.609 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.609 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.610 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.610 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.610 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.611 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.611 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.611 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.612 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.612 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.612 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5dc3fcb7) -2024-09-20 17:47:17.612 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.613 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.613 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.613 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.613 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.613 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.614 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.614 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.614 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.614 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.614 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.614 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:17.614 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:17.614 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@c4c0b41) -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.615 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'startInternal' -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=startInternal) -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.616 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@76911385) -2024-09-20 17:47:17.617 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.618 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.618 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.618 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.618 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.619 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.619 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.619 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.619 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.619 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.619 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.620 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:17.620 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:17.620 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.620 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.620 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.620 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.620 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.620 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.621 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.621 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.621 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.621 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.621 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5467eea4) -2024-09-20 17:47:17.621 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.621 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.621 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.622 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.622 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.622 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.622 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.622 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.622 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.622 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stopInternal' -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stopInternal) -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.623 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@160396db) -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.624 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.625 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.625 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.625 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.625 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.626 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.626 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.626 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.626 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'unbind' -2024-09-20 17:47:17.626 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=unbind) -2024-09-20 17:47:17.626 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.626 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.626 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.628 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.628 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.628 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.628 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.628 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.629 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.629 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.629 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7a799159) -2024-09-20 17:47:17.629 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.629 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.629 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.629 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.629 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.630 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.630 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.630 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:17.631 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.631 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.631 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.631 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=Nio2Endpoint, className=org.apache.catalina.mbeans.ClassNameMBean, description=null, group=ThreadPool, type=org.apache.tomcat.util.net.Nio2Endpoint]) -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.632 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.633 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.633 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.633 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'AprEndpoint' -2024-09-20 17:47:17.633 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=AprEndpoint) -2024-09-20 17:47:17.633 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'className' to 'org.apache.catalina.mbeans.ClassNameMBean' -2024-09-20 17:47:17.633 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean className=org.apache.catalina.mbeans.ClassNameMBean) -2024-09-20 17:47:17.633 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.633 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'ThreadPool' -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=ThreadPool) -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.tomcat.util.net.AprEndpoint' -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.tomcat.util.net.AprEndpoint) -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.634 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.635 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.635 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.635 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.635 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptCount' -2024-09-20 17:47:17.637 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptCount) -2024-09-20 17:47:17.637 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.638 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.638 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.638 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.638 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.639 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.639 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.639 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.639 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.640 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.640 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@40ab8a8) -2024-09-20 17:47:17.640 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.640 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.640 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.640 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.640 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.641 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.641 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.641 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.641 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.641 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.641 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.641 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptorThreadCount' -2024-09-20 17:47:17.641 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptorThreadCount) -2024-09-20 17:47:17.642 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.642 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.642 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.642 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.642 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.642 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6ff37443) -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.643 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.644 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.644 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.644 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.644 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.644 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'acceptorThreadPriority' -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=acceptorThreadPriority) -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.645 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@65cc8228) -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.646 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'alpnSupported' -2024-09-20 17:47:17.647 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=alpnSupported) -2024-09-20 17:47:17.648 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.648 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.648 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.648 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.648 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.648 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.648 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.648 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.649 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.649 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.649 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.649 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.649 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.649 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.650 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@53093491) -2024-09-20 17:47:17.650 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.650 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.650 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.650 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'bindOnInit' -2024-09-20 17:47:17.651 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=bindOnInit) -2024-09-20 17:47:17.652 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.652 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.652 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.652 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.652 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.652 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.653 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.653 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.653 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.653 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.653 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@21719a0) -2024-09-20 17:47:17.654 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.654 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.654 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.654 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.654 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.654 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.654 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.654 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.655 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.655 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.655 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.655 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionCount' -2024-09-20 17:47:17.655 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionCount) -2024-09-20 17:47:17.655 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.655 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.655 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.656 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.656 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.656 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.656 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.656 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.656 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.656 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.656 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.657 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.657 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@76b224cd) -2024-09-20 17:47:17.657 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.657 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.657 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.657 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.658 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.658 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.658 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.658 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.658 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.659 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.659 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.659 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionLinger' -2024-09-20 17:47:17.659 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionLinger) -2024-09-20 17:47:17.659 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.659 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.660 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.660 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.661 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.662 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.662 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.663 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.663 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.663 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.663 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@77ee25f1) -2024-09-20 17:47:17.663 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.663 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.663 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.664 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.664 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.664 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.664 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.664 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.664 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.664 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'connectionTimeout' -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=connectionTimeout) -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.665 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6dd93a21) -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.666 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.667 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.667 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.667 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.667 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'currentThreadCount' -2024-09-20 17:47:17.667 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=currentThreadCount) -2024-09-20 17:47:17.667 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.668 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.668 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.669 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.670 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.673 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.675 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.676 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.676 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.676 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.676 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.676 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.676 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@57b9e423) -2024-09-20 17:47:17.677 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.677 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.677 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.677 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.678 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.678 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.678 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.679 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.679 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.680 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.680 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.680 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'currentThreadsBusy' -2024-09-20 17:47:17.680 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=currentThreadsBusy) -2024-09-20 17:47:17.681 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.681 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.681 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.681 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.681 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.682 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.682 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.682 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.682 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.683 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.683 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.683 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.683 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@304a3655) -2024-09-20 17:47:17.684 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.684 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.684 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.684 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.684 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.685 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.685 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.685 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.685 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.685 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.686 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.686 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'daemon' -2024-09-20 17:47:17.686 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=daemon) -2024-09-20 17:47:17.686 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.687 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.687 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.687 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.688 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.688 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.688 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.688 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.689 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.689 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.689 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@368d5c00) -2024-09-20 17:47:17.689 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.689 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.689 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.690 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.690 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.690 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.690 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.691 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.691 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.691 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.691 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.691 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'defaultSSLHostConfigName' -2024-09-20 17:47:17.691 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=defaultSSLHostConfigName) -2024-09-20 17:47:17.691 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.691 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.692 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.692 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.692 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.692 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.692 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.692 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.692 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.692 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.693 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@12a160c2) -2024-09-20 17:47:17.693 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.693 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.693 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.693 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.693 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.693 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.694 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.694 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.694 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.694 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.694 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.695 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'deferAccept' -2024-09-20 17:47:17.695 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=deferAccept) -2024-09-20 17:47:17.695 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.695 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.695 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.696 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.696 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.696 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.696 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.696 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.696 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.696 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.696 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@aa10649) -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.697 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'domain' -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=domain) -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6b3871d6) -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.698 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'executorTerminationTimeoutMillis' -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=executorTerminationTimeoutMillis) -2024-09-20 17:47:17.699 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@37095ded) -2024-09-20 17:47:17.700 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.701 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.701 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.701 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.701 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.701 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.701 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.701 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.702 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.702 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.702 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.702 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'ipv6v6only' -2024-09-20 17:47:17.702 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=ipv6v6only) -2024-09-20 17:47:17.702 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2eb79cbe) -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.704 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'keepAliveCount' -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=keepAliveCount) -2024-09-20 17:47:17.705 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.706 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@2ca6546f) -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.707 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'keepAliveTimeout' -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=keepAliveTimeout) -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.708 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@43826ec) -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.709 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.710 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.710 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.710 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.710 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'localPort' -2024-09-20 17:47:17.710 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=localPort) -2024-09-20 17:47:17.710 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.711 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7923f5b3) -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.712 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxConnections' -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxConnections) -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.713 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6b63d445) -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.714 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxKeepAliveRequests' -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxKeepAliveRequests) -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.715 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7578e06a) -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.716 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxThreads' -2024-09-20 17:47:17.717 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxThreads) -2024-09-20 17:47:17.718 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.718 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.718 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.718 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.718 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.719 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.719 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.719 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.719 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.719 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.719 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@30b2b76f) -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.720 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'minSpareThreads' -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=minSpareThreads) -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.721 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.722 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.722 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.722 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.722 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.722 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@56da52a7) -2024-09-20 17:47:17.722 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.722 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.722 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.723 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'modelerType' -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=modelerType) -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.724 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@23ee75c5) -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.725 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.726 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.726 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.726 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.726 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.726 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.726 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.727 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.727 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'name' -2024-09-20 17:47:17.727 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=name) -2024-09-20 17:47:17.727 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.727 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.728 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.728 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.728 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.728 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.728 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.728 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.728 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.728 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.729 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@11a7ba62) -2024-09-20 17:47:17.729 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.729 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.729 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.729 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.729 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.729 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.730 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.730 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.730 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.730 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.730 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.730 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'paused' -2024-09-20 17:47:17.730 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=paused) -2024-09-20 17:47:17.730 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.731 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.732 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.732 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.732 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.732 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.732 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@340b7ef6) -2024-09-20 17:47:17.732 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.732 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.733 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.733 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.733 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.733 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.733 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.733 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.733 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.734 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.734 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.734 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'pollTime' -2024-09-20 17:47:17.735 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=pollTime) -2024-09-20 17:47:17.735 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.735 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.735 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@30404dba) -2024-09-20 17:47:17.736 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.737 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'port' -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=port) -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.738 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@6050462a) -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.740 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portOffset' -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portOffset) -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.741 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4c0884e8) -2024-09-20 17:47:17.742 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.743 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.744 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.744 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'portWithOffset' -2024-09-20 17:47:17.744 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=portWithOffset) -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.745 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@231baf51) -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.746 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'running' -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=running) -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.747 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.748 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@11841b15) -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.749 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.750 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.750 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.750 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sSLEnabled' -2024-09-20 17:47:17.750 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sSLEnabled) -2024-09-20 17:47:17.750 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.750 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.750 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@73877e19) -2024-09-20 17:47:17.751 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.752 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.752 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.752 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.752 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.753 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.753 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.753 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.753 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.753 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sendfileCount' -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sendfileCount) -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.754 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.755 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.755 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.755 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.755 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.755 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.756 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.756 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7b208b45) -2024-09-20 17:47:17.756 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.756 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.756 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.756 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'sendfileSize' -2024-09-20 17:47:17.757 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=sendfileSize) -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.758 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5bfc257) -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.759 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.760 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.760 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'tcpNoDelay' -2024-09-20 17:47:17.760 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=tcpNoDelay) -2024-09-20 17:47:17.760 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.761 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@34523d46) -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.762 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'threadPriority' -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=threadPriority) -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.763 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7cedfa63) -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.764 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.765 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.765 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.765 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.766 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.766 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.766 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.766 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.766 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'useSendfile' -2024-09-20 17:47:17.766 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=useSendfile) -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.767 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3e83c18) -2024-09-20 17:47:17.769 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.769 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.769 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.769 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.769 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.769 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'addNegotiatedProtocol' -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=addNegotiatedProtocol) -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.770 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.771 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@783efb48) -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.772 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@5d235104) -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.773 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.774 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'bind' -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=bind) -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.775 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.776 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.776 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.776 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4e8e8621) -2024-09-20 17:47:17.776 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.776 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.776 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.777 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.777 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.777 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.777 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.777 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'closeServerSocketGraceful' -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=closeServerSocketGraceful) -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.778 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.779 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@c446b14) -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.780 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'createExecutor' -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=createExecutor) -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.781 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.782 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3af356f) -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.783 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.784 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.784 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.784 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'destroy' -2024-09-20 17:47:17.784 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=destroy) -2024-09-20 17:47:17.784 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.784 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.784 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.785 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.785 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.785 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.785 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.785 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.785 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.785 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.786 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4443ef6f) -2024-09-20 17:47:17.786 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.786 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.786 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.786 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.786 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.786 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.786 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.787 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.787 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.787 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.787 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.787 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'findSslHostConfigs' -2024-09-20 17:47:17.787 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=findSslHostConfigs) -2024-09-20 17:47:17.787 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to '[Lorg.apache.tomcat.util.net.SSLHostConfig;' -2024-09-20 17:47:17.787 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=[Lorg.apache.tomcat.util.net.SSLHostConfig;) -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@7e46d648) -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.788 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getAttribute' -2024-09-20 17:47:17.790 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getAttribute) -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.Object' -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.Object) -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.791 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.792 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.792 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.792 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.792 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.792 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.792 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.792 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.792 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.793 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.793 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.793 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.793 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.793 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.793 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@51751e5f) -2024-09-20 17:47:17.793 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.794 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.794 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.794 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.794 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.794 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.795 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.795 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.795 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.795 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.795 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.795 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.795 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@2b0b4d53) -2024-09-20 17:47:17.795 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.796 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.796 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.796 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.796 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.796 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.796 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.796 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getProperty' -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getProperty) -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'java.lang.String' -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=java.lang.String) -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.797 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.798 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@7068f7ca) -2024-09-20 17:47:17.799 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.800 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.801 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@38548b19) -2024-09-20 17:47:17.801 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.801 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.801 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.801 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.801 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.801 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.801 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.802 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.802 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.802 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.802 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.802 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'getSslContext' -2024-09-20 17:47:17.802 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=getSslContext) -2024-09-20 17:47:17.802 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'long' -2024-09-20 17:47:17.803 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=long) -2024-09-20 17:47:17.803 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.803 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.803 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.803 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.803 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.803 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.803 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.804 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@41aaedaa) -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.805 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@303a5119) -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.806 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'hasNegotiableProtocols' -2024-09-20 17:47:17.807 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=hasNegotiableProtocols) -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.808 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@75b3673) -2024-09-20 17:47:17.809 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.809 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.809 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.809 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.809 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.809 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.809 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.809 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.810 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.810 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.810 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.810 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'init' -2024-09-20 17:47:17.810 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=init) -2024-09-20 17:47:17.810 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.812 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.813 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@1bcb79c2) -2024-09-20 17:47:17.813 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.813 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.813 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.813 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'pause' -2024-09-20 17:47:17.814 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=pause) -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.815 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@d1a10ac) -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.816 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'reloadSslHostConfig' -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=reloadSslHostConfig) -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.817 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.818 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.819 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.819 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.819 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.819 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.819 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@6fca2a8f) -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.820 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@31fc71ab) -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.821 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.822 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.822 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.822 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.822 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'reloadSslHostConfigs' -2024-09-20 17:47:17.822 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=reloadSslHostConfigs) -2024-09-20 17:47:17.822 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.822 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.824 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.824 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.824 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.824 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.824 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.824 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.824 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@71391b3f) -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.825 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'removeSslHostConfig' -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=removeSslHostConfig) -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'org.apache.tomcat.util.net.SSLHostConfig' -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=org.apache.tomcat.util.net.SSLHostConfig) -2024-09-20 17:47:17.826 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.827 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.827 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.827 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.827 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.828 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.828 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.828 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.829 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.829 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.829 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.829 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.829 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.829 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.829 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@2cfbeac4) -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.830 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.831 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - ' -2024-09-20 17:47:17.831 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.831 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.831 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.831 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.831 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@12db3386) -2024-09-20 17:47:17.831 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.832 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'resume' -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=resume) -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.833 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.834 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.834 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.834 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.834 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.834 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4078695f) -2024-09-20 17:47:17.834 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.834 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.834 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.835 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.835 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.836 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.836 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.836 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.836 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.836 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.836 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.836 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'setProperty' -2024-09-20 17:47:17.837 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=setProperty) -2024-09-20 17:47:17.837 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'boolean' -2024-09-20 17:47:17.837 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=boolean) -2024-09-20 17:47:17.837 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.837 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.837 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.837 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param0' -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param0) -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.838 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@79a1728c) -2024-09-20 17:47:17.839 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,parameter) -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter}New org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.840 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.841 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Set org.apache.tomcat.util.modeler.ParameterInfo properties -2024-09-20 17:47:17.841 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'name' to 'param1' -2024-09-20 17:47:17.841 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo name=param1) -2024-09-20 17:47:17.841 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation/parameter} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.841 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ParameterInfo type=java.lang.String) -2024-09-20 17:47:17.841 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.841 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,parameter) -2024-09-20 17:47:17.841 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation/parameter' -2024-09-20 17:47:17.842 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.842 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.842 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.843 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.843 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addParameter, paramType=org.apache.tomcat.util.modeler.ParameterInfo] -2024-09-20 17:47:17.843 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation/parameter} Call org.apache.tomcat.util.modeler.OperationInfo.addParameter(org.apache.tomcat.util.modeler.ParameterInfo@a7f0ab6) -2024-09-20 17:47:17.844 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.ParameterInfo org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ParameterInfo, attributeName=null] -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation/parameter} Pop org.apache.tomcat.util.modeler.ParameterInfo -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - ' -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.845 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@41f35f7c) -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.846 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'shutdownExecutor' -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=shutdownExecutor) -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.847 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@42c2f48c) -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.848 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'start' -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=start) -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.849 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@3005db4a) -2024-09-20 17:47:17.850 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.851 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.851 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.851 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.851 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.851 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.851 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.851 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.851 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.853 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.853 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.853 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'startInternal' -2024-09-20 17:47:17.853 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=startInternal) -2024-09-20 17:47:17.853 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.854 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@425d5d46) -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.855 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stop' -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stop) -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.856 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.857 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.857 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@198ef2ce) -2024-09-20 17:47:17.857 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.857 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.857 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.857 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'stopInternal' -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=stopInternal) -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.858 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@4cbd03e7) -2024-09-20 17:47:17.859 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.860 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.860 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'unbind' -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=unbind) -2024-09-20 17:47:17.861 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@52fc5eb1) -2024-09-20 17:47:17.863 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.864 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.864 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.864 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.864 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.864 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.864 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.864 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:17.865 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.865 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.865 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.865 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.865 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=AprEndpoint, className=org.apache.catalina.mbeans.ClassNameMBean, description=null, group=ThreadPool, type=org.apache.tomcat.util.net.AprEndpoint]) -2024-09-20 17:47:17.865 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.865 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.865 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.866 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.866 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:17.866 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:17.866 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:17.866 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - -' -2024-09-20 17:47:17.866 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.866 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:17.867 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.tomcat.util.net.NioEndpoint@7a639ec5 Tomcat:type=ThreadPool,name="http-nio-8101" -2024-09-20 17:47:17.867 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=ThreadPool,name="http-nio-8101",subType=SocketProperties -2024-09-20 17:47:17.867 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:17.867 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Introspecting -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.tomcat.util.net.SocketProperties.setProperties(java.nio.channels.AsynchronousServerSocketChannel) throws java.io.IOException class java.nio.channels.AsynchronousServerSocketChannel -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.tomcat.util.net.SocketProperties.setProperties(java.nio.channels.AsynchronousSocketChannel) throws java.io.IOException class java.nio.channels.AsynchronousSocketChannel -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.tomcat.util.net.SocketProperties.setProperties(java.net.ServerSocket) throws java.net.SocketException class java.net.ServerSocket -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.tomcat.util.net.SocketProperties.setProperties(java.net.Socket) throws java.net.SocketException class java.net.Socket -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute timeoutInterval public long org.apache.tomcat.util.net.SocketProperties.getTimeoutInterval() public void org.apache.tomcat.util.net.SocketProperties.setTimeoutInterval(long) -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute txBufSize public int org.apache.tomcat.util.net.SocketProperties.getTxBufSize() public void org.apache.tomcat.util.net.SocketProperties.setTxBufSize(int) -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute rxBufSize public int org.apache.tomcat.util.net.SocketProperties.getRxBufSize() public void org.apache.tomcat.util.net.SocketProperties.setRxBufSize(int) -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute bufferPoolSize public int org.apache.tomcat.util.net.SocketProperties.getBufferPoolSize() public void org.apache.tomcat.util.net.SocketProperties.setBufferPoolSize(int) -2024-09-20 17:47:17.868 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute performanceLatency public int org.apache.tomcat.util.net.SocketProperties.getPerformanceLatency() public void org.apache.tomcat.util.net.SocketProperties.setPerformanceLatency(int) -2024-09-20 17:47:17.869 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute ooBInline public boolean org.apache.tomcat.util.net.SocketProperties.getOoBInline() public void org.apache.tomcat.util.net.SocketProperties.setOoBInline(boolean) -2024-09-20 17:47:17.869 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute appWriteBufSize public int org.apache.tomcat.util.net.SocketProperties.getAppWriteBufSize() public void org.apache.tomcat.util.net.SocketProperties.setAppWriteBufSize(int) -2024-09-20 17:47:17.870 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute bufferPool public int org.apache.tomcat.util.net.SocketProperties.getBufferPool() public void org.apache.tomcat.util.net.SocketProperties.setBufferPool(int) -2024-09-20 17:47:17.870 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute soTimeout public int org.apache.tomcat.util.net.SocketProperties.getSoTimeout() public void org.apache.tomcat.util.net.SocketProperties.setSoTimeout(int) -2024-09-20 17:47:17.870 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute directBuffer public boolean org.apache.tomcat.util.net.SocketProperties.getDirectBuffer() public void org.apache.tomcat.util.net.SocketProperties.setDirectBuffer(boolean) -2024-09-20 17:47:17.870 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute soLingerOn public boolean org.apache.tomcat.util.net.SocketProperties.getSoLingerOn() public void org.apache.tomcat.util.net.SocketProperties.setSoLingerOn(boolean) -2024-09-20 17:47:17.870 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute eventCache public int org.apache.tomcat.util.net.SocketProperties.getEventCache() public void org.apache.tomcat.util.net.SocketProperties.setEventCache(int) -2024-09-20 17:47:17.870 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute performanceBandwidth public int org.apache.tomcat.util.net.SocketProperties.getPerformanceBandwidth() public void org.apache.tomcat.util.net.SocketProperties.setPerformanceBandwidth(int) -2024-09-20 17:47:17.870 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute soReuseAddress public boolean org.apache.tomcat.util.net.SocketProperties.getSoReuseAddress() public void org.apache.tomcat.util.net.SocketProperties.setSoReuseAddress(boolean) -2024-09-20 17:47:17.870 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute appReadBufSize public int org.apache.tomcat.util.net.SocketProperties.getAppReadBufSize() public void org.apache.tomcat.util.net.SocketProperties.setAppReadBufSize(int) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute performanceConnectionTime public int org.apache.tomcat.util.net.SocketProperties.getPerformanceConnectionTime() public void org.apache.tomcat.util.net.SocketProperties.setPerformanceConnectionTime(int) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute soLingerTime public int org.apache.tomcat.util.net.SocketProperties.getSoLingerTime() public void org.apache.tomcat.util.net.SocketProperties.setSoLingerTime(int) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute directBufferPool public int org.apache.tomcat.util.net.SocketProperties.getDirectBufferPool() public void org.apache.tomcat.util.net.SocketProperties.setDirectBufferPool(int) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute directSslBuffer public boolean org.apache.tomcat.util.net.SocketProperties.getDirectSslBuffer() public void org.apache.tomcat.util.net.SocketProperties.setDirectSslBuffer(boolean) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute tcpNoDelay public boolean org.apache.tomcat.util.net.SocketProperties.getTcpNoDelay() public void org.apache.tomcat.util.net.SocketProperties.setTcpNoDelay(boolean) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute processorCache public int org.apache.tomcat.util.net.SocketProperties.getProcessorCache() public void org.apache.tomcat.util.net.SocketProperties.setProcessorCache(int) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute unlockTimeout public int org.apache.tomcat.util.net.SocketProperties.getUnlockTimeout() public void org.apache.tomcat.util.net.SocketProperties.setUnlockTimeout(int) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute soKeepAlive public boolean org.apache.tomcat.util.net.SocketProperties.getSoKeepAlive() public void org.apache.tomcat.util.net.SocketProperties.setSoKeepAlive(boolean) -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Setting name: org.apache.tomcat.util.net.SocketProperties -2024-09-20 17:47:17.871 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.tomcat.util.net.SocketProperties@6ceb7b5e Tomcat:type=ThreadPool,name="http-nio-8101",subType=SocketProperties -2024-09-20 17:47:17.872 INFO 22604 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] -2024-09-20 17:47:17.872 INFO 22604 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17] -2024-09-20 17:47:17.872 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Realm,realmPath=/realm0 -2024-09-20 17:47:17.872 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:17.872 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Introspecting -2024-09-20 17:47:17.876 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.realm.RealmBase.setCredentialHandler(org.apache.catalina.CredentialHandler) interface org.apache.catalina.CredentialHandler -2024-09-20 17:47:17.879 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.CredentialHandler org.apache.catalina.realm.RealmBase.getCredentialHandler() -2024-09-20 17:47:17.879 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.realm.RealmBase.setContainer(org.apache.catalina.Container) interface org.apache.catalina.Container -2024-09-20 17:47:17.880 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.Container org.apache.catalina.realm.RealmBase.getContainer() -2024-09-20 17:47:17.880 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.LifecycleState org.apache.catalina.util.LifecycleBase.getState() -2024-09-20 17:47:17.880 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute domainInternal public java.lang.String org.apache.catalina.realm.RealmBase.getDomainInternal() null -2024-09-20 17:47:17.880 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute available public default boolean org.apache.catalina.Realm.isAvailable() null -2024-09-20 17:47:17.880 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute stripRealmForGss public boolean org.apache.catalina.realm.RealmBase.isStripRealmForGss() public void org.apache.catalina.realm.RealmBase.setStripRealmForGss(boolean) -2024-09-20 17:47:17.880 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute domain public final java.lang.String org.apache.catalina.util.LifecycleMBeanBase.getDomain() public final void org.apache.catalina.util.LifecycleMBeanBase.setDomain(java.lang.String) -2024-09-20 17:47:17.880 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute objectName public final javax.management.ObjectName org.apache.catalina.util.LifecycleMBeanBase.getObjectName() null -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute objectNameKeyProperties public java.lang.String org.apache.catalina.realm.RealmBase.getObjectNameKeyProperties() null -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute throwOnFailure public boolean org.apache.catalina.util.LifecycleBase.getThrowOnFailure() public void org.apache.catalina.util.LifecycleBase.setThrowOnFailure(boolean) -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute x509UsernameRetrieverClassName public java.lang.String org.apache.catalina.realm.RealmBase.getX509UsernameRetrieverClassName() public void org.apache.catalina.realm.RealmBase.setX509UsernameRetrieverClassName(java.lang.String) -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute transportGuaranteeRedirectStatus public int org.apache.catalina.realm.RealmBase.getTransportGuaranteeRedirectStatus() public void org.apache.catalina.realm.RealmBase.setTransportGuaranteeRedirectStatus(int) -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute validate public boolean org.apache.catalina.realm.RealmBase.getValidate() public void org.apache.catalina.realm.RealmBase.setValidate(boolean) -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute realmPath public java.lang.String org.apache.catalina.realm.RealmBase.getRealmPath() public void org.apache.catalina.realm.RealmBase.setRealmPath(java.lang.String) -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute stateName public java.lang.String org.apache.catalina.util.LifecycleBase.getStateName() null -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute allRolesMode public java.lang.String org.apache.catalina.realm.RealmBase.getAllRolesMode() public void org.apache.catalina.realm.RealmBase.setAllRolesMode(java.lang.String) -2024-09-20 17:47:17.881 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Setting name: org.apache.catalina.startup.Tomcat$SimpleRealm -2024-09-20 17:47:17.882 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister SimpleRealm[StandardEngine[Tomcat]] Tomcat:type=Realm,realmPath=/realm0 -2024-09-20 17:47:17.882 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Host,host=localhost -2024-09-20 17:47:17.883 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardEngine[Tomcat].StandardHost[localhost] Tomcat:type=Host,host=localhost -2024-09-20 17:47:17.883 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:17.883 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:17.884 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Introspecting -2024-09-20 17:47:17.887 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedContext.setManager(org.apache.catalina.Manager) interface org.apache.catalina.Manager -2024-09-20 17:47:17.888 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedContext.setStarter(org.springframework.boot.web.embedded.tomcat.TomcatStarter) class org.springframework.boot.web.embedded.tomcat.TomcatStarter -2024-09-20 17:47:17.888 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.springframework.boot.web.embedded.tomcat.TomcatStarter org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedContext.getStarter() -2024-09-20 17:47:17.888 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.WebResourceRoot org.apache.catalina.core.StandardContext.getResources() -2024-09-20 17:47:17.888 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.Loader org.apache.catalina.core.StandardContext.getLoader() -2024-09-20 17:47:17.889 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.lang.ClassLoader org.apache.catalina.core.StandardContext.getParentClassLoader() -2024-09-20 17:47:17.889 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public javax.servlet.ServletContext org.apache.catalina.core.StandardContext.getServletContext() -2024-09-20 17:47:17.889 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.StandardContext.setResources(org.apache.catalina.WebResourceRoot) interface org.apache.catalina.WebResourceRoot -2024-09-20 17:47:17.889 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public javax.management.MBeanNotificationInfo[] org.apache.catalina.core.StandardContext.getNotificationInfo() -2024-09-20 17:47:17.890 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public javax.servlet.descriptor.JspConfigDescriptor org.apache.catalina.core.StandardContext.getJspConfigDescriptor() -2024-09-20 17:47:17.890 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.Manager org.apache.catalina.core.StandardContext.getManager() -2024-09-20 17:47:17.890 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.StandardContext.setLoader(org.apache.catalina.Loader) interface org.apache.catalina.Loader -2024-09-20 17:47:17.890 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.StandardContext.setConfigFile(java.net.URL) class java.net.URL -2024-09-20 17:47:17.890 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.Authenticator org.apache.catalina.core.StandardContext.getAuthenticator() -2024-09-20 17:47:17.890 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.tomcat.JarScanner org.apache.catalina.core.StandardContext.getJarScanner() -2024-09-20 17:47:17.893 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.tomcat.InstanceManager org.apache.catalina.core.StandardContext.getInstanceManager() -2024-09-20 17:47:17.893 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.StandardContext.setInstanceManager(org.apache.tomcat.InstanceManager) interface org.apache.tomcat.InstanceManager -2024-09-20 17:47:17.894 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.net.URL org.apache.catalina.core.StandardContext.getConfigFile() -2024-09-20 17:47:17.894 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.StandardContext.setJarScanner(org.apache.tomcat.JarScanner) interface org.apache.tomcat.JarScanner -2024-09-20 17:47:17.895 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.tomcat.util.http.CookieProcessor org.apache.catalina.core.StandardContext.getCookieProcessor() -2024-09-20 17:47:17.895 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.lang.Object org.apache.catalina.core.StandardContext.getNamingToken() -2024-09-20 17:47:17.895 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.StandardContext.setCookieProcessor(org.apache.tomcat.util.http.CookieProcessor) interface org.apache.tomcat.util.http.CookieProcessor -2024-09-20 17:47:17.895 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.StandardContext.setThreadBindingListener(org.apache.catalina.ThreadBindingListener) interface org.apache.catalina.ThreadBindingListener -2024-09-20 17:47:17.895 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.ThreadBindingListener org.apache.catalina.core.StandardContext.getThreadBindingListener() -2024-09-20 17:47:17.895 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.StandardContext.setJspConfigDescriptor(javax.servlet.descriptor.JspConfigDescriptor) interface javax.servlet.descriptor.JspConfigDescriptor -2024-09-20 17:47:17.896 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.Container org.apache.catalina.core.ContainerBase.getParent() -2024-09-20 17:47:17.896 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.juli.logging.Log org.apache.catalina.core.ContainerBase.getLogger() -2024-09-20 17:47:17.896 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.ContainerBase.setParent(org.apache.catalina.Container) interface org.apache.catalina.Container -2024-09-20 17:47:17.896 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public javax.management.ObjectName[] org.apache.catalina.core.ContainerBase.getChildren() -2024-09-20 17:47:17.896 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.ContainerBase.setParentClassLoader(java.lang.ClassLoader) class java.lang.ClassLoader -2024-09-20 17:47:17.896 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.AccessLog org.apache.catalina.core.ContainerBase.getAccessLog() -2024-09-20 17:47:17.896 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.ContainerBase.setCluster(org.apache.catalina.Cluster) interface org.apache.catalina.Cluster -2024-09-20 17:47:17.896 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.Realm org.apache.catalina.core.ContainerBase.getRealm() -2024-09-20 17:47:17.897 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.core.ContainerBase.setRealm(org.apache.catalina.Realm) interface org.apache.catalina.Realm -2024-09-20 17:47:17.897 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.Pipeline org.apache.catalina.core.ContainerBase.getPipeline() -2024-09-20 17:47:17.897 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.Cluster org.apache.catalina.core.ContainerBase.getCluster() -2024-09-20 17:47:17.897 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.LifecycleState org.apache.catalina.util.LifecycleBase.getState() -2024-09-20 17:47:17.897 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute denyUncoveredHttpMethods public boolean org.apache.catalina.core.StandardContext.getDenyUncoveredHttpMethods() public void org.apache.catalina.core.StandardContext.setDenyUncoveredHttpMethods(boolean) -2024-09-20 17:47:17.897 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute failCtxIfServletStartFails public java.lang.Boolean org.apache.catalina.core.StandardContext.getFailCtxIfServletStartFails() public void org.apache.catalina.core.StandardContext.setFailCtxIfServletStartFails(java.lang.Boolean) -2024-09-20 17:47:17.897 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute configured public boolean org.apache.catalina.core.StandardContext.getConfigured() public void org.apache.catalina.core.StandardContext.setConfigured(boolean) -2024-09-20 17:47:17.897 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute copyXML public boolean org.apache.catalina.core.StandardContext.getCopyXML() public void org.apache.catalina.core.StandardContext.setCopyXML(boolean) -2024-09-20 17:47:17.898 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute allowMultipleLeadingForwardSlashInPath public boolean org.apache.catalina.core.StandardContext.getAllowMultipleLeadingForwardSlashInPath() public void org.apache.catalina.core.StandardContext.setAllowMultipleLeadingForwardSlashInPath(boolean) -2024-09-20 17:47:17.898 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute encodedPath public java.lang.String org.apache.catalina.core.StandardContext.getEncodedPath() null -2024-09-20 17:47:17.898 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute displayName public java.lang.String org.apache.catalina.core.StandardContext.getDisplayName() public void org.apache.catalina.core.StandardContext.setDisplayName(java.lang.String) -2024-09-20 17:47:17.898 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute baseName public java.lang.String org.apache.catalina.core.StandardContext.getBaseName() null -2024-09-20 17:47:17.898 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sendRedirectBody public boolean org.apache.catalina.core.StandardContext.getSendRedirectBody() public void org.apache.catalina.core.StandardContext.setSendRedirectBody(boolean) -2024-09-20 17:47:17.899 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute fireRequestListenersOnForwards public boolean org.apache.catalina.core.StandardContext.getFireRequestListenersOnForwards() public void org.apache.catalina.core.StandardContext.setFireRequestListenersOnForwards(boolean) -2024-09-20 17:47:17.899 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute xmlBlockExternal public boolean org.apache.catalina.core.StandardContext.getXmlBlockExternal() public void org.apache.catalina.core.StandardContext.setXmlBlockExternal(boolean) -2024-09-20 17:47:17.899 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute backgroundProcessorDelay public int org.apache.catalina.core.ContainerBase.getBackgroundProcessorDelay() public void org.apache.catalina.core.ContainerBase.setBackgroundProcessorDelay(int) -2024-09-20 17:47:17.899 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute privileged public boolean org.apache.catalina.core.StandardContext.getPrivileged() public void org.apache.catalina.core.StandardContext.setPrivileged(boolean) -2024-09-20 17:47:17.899 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute originalDocBase public java.lang.String org.apache.catalina.core.StandardContext.getOriginalDocBase() public void org.apache.catalina.core.StandardContext.setOriginalDocBase(java.lang.String) -2024-09-20 17:47:17.899 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute startChildren public boolean org.apache.catalina.core.ContainerBase.getStartChildren() public void org.apache.catalina.core.ContainerBase.setStartChildren(boolean) -2024-09-20 17:47:17.900 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute allowCasualMultipartParsing public boolean org.apache.catalina.core.StandardContext.getAllowCasualMultipartParsing() public void org.apache.catalina.core.StandardContext.setAllowCasualMultipartParsing(boolean) -2024-09-20 17:47:17.900 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute mBeanKeyProperties public java.lang.String org.apache.catalina.core.ContainerBase.getMBeanKeyProperties() null -2024-09-20 17:47:17.900 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute mapperDirectoryRedirectEnabled public boolean org.apache.catalina.core.StandardContext.getMapperDirectoryRedirectEnabled() public void org.apache.catalina.core.StandardContext.setMapperDirectoryRedirectEnabled(boolean) -2024-09-20 17:47:17.900 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesRmiTargets public boolean org.apache.catalina.core.StandardContext.getClearReferencesRmiTargets() public void org.apache.catalina.core.StandardContext.setClearReferencesRmiTargets(boolean) -2024-09-20 17:47:17.900 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute unloadDelay public long org.apache.catalina.core.StandardContext.getUnloadDelay() public void org.apache.catalina.core.StandardContext.setUnloadDelay(long) -2024-09-20 17:47:17.900 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesObjectStreamClassCaches public boolean org.apache.catalina.core.StandardContext.getClearReferencesObjectStreamClassCaches() public void org.apache.catalina.core.StandardContext.setClearReferencesObjectStreamClassCaches(boolean) -2024-09-20 17:47:17.900 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute webappVersion public java.lang.String org.apache.catalina.core.StandardContext.getWebappVersion() public void org.apache.catalina.core.StandardContext.setWebappVersion(java.lang.String) -2024-09-20 17:47:17.900 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute effectiveMajorVersion public int org.apache.catalina.core.StandardContext.getEffectiveMajorVersion() public void org.apache.catalina.core.StandardContext.setEffectiveMajorVersion(int) -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute welcomeFiles public java.lang.String[] org.apache.catalina.core.StandardContext.getWelcomeFiles() null -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute containerSciFilter public java.lang.String org.apache.catalina.core.StandardContext.getContainerSciFilter() public void org.apache.catalina.core.StandardContext.setContainerSciFilter(java.lang.String) -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute errorCount public int org.apache.catalina.core.StandardContext.getErrorCount() null -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sessionCookiePath public java.lang.String org.apache.catalina.core.StandardContext.getSessionCookiePath() public void org.apache.catalina.core.StandardContext.setSessionCookiePath(java.lang.String) -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute server public java.lang.String org.apache.catalina.core.StandardContext.getServer() public java.lang.String org.apache.catalina.core.StandardContext.setServer(java.lang.String) -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute charsetMapperClass public java.lang.String org.apache.catalina.core.StandardContext.getCharsetMapperClass() public void org.apache.catalina.core.StandardContext.setCharsetMapperClass(java.lang.String) -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute wrapperClass public java.lang.String org.apache.catalina.core.StandardContext.getWrapperClass() public void org.apache.catalina.core.StandardContext.setWrapperClass(java.lang.String) -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute cookies public boolean org.apache.catalina.core.StandardContext.getCookies() public void org.apache.catalina.core.StandardContext.setCookies(boolean) -2024-09-20 17:47:17.901 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute jndiExceptionOnFailedWrite public boolean org.apache.catalina.core.StandardContext.getJndiExceptionOnFailedWrite() public void org.apache.catalina.core.StandardContext.setJndiExceptionOnFailedWrite(boolean) -2024-09-20 17:47:17.902 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute startTime public long org.apache.catalina.core.StandardContext.getStartTime() null -2024-09-20 17:47:17.902 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute namingResources public org.apache.catalina.deploy.NamingResourcesImpl org.apache.catalina.core.StandardContext.getNamingResources() public void org.apache.catalina.core.StandardContext.setNamingResources(org.apache.catalina.deploy.NamingResourcesImpl) -2024-09-20 17:47:17.902 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sessionCookieName public java.lang.String org.apache.catalina.core.StandardContext.getSessionCookieName() public void org.apache.catalina.core.StandardContext.setSessionCookieName(java.lang.String) -2024-09-20 17:47:17.902 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute crossContext public boolean org.apache.catalina.core.StandardContext.getCrossContext() public void org.apache.catalina.core.StandardContext.setCrossContext(boolean) -2024-09-20 17:47:17.902 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute docBase public java.lang.String org.apache.catalina.core.StandardContext.getDocBase() public void org.apache.catalina.core.StandardContext.setDocBase(java.lang.String) -2024-09-20 17:47:17.903 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesThreadLocals public boolean org.apache.catalina.core.StandardContext.getClearReferencesThreadLocals() public void org.apache.catalina.core.StandardContext.setClearReferencesThreadLocals(boolean) -2024-09-20 17:47:17.903 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesStopThreads public boolean org.apache.catalina.core.StandardContext.getClearReferencesStopThreads() public void org.apache.catalina.core.StandardContext.setClearReferencesStopThreads(boolean) -2024-09-20 17:47:17.903 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute logName public java.lang.String org.apache.catalina.core.ContainerBase.getLogName() null -2024-09-20 17:47:17.903 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute logEffectiveWebXml public boolean org.apache.catalina.core.StandardContext.getLogEffectiveWebXml() public void org.apache.catalina.core.StandardContext.setLogEffectiveWebXml(boolean) -2024-09-20 17:47:17.904 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute skipMemoryLeakChecksOnJvmShutdown public boolean org.apache.catalina.core.StandardContext.getSkipMemoryLeakChecksOnJvmShutdown() public void org.apache.catalina.core.StandardContext.setSkipMemoryLeakChecksOnJvmShutdown(boolean) -2024-09-20 17:47:17.904 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute servlet22 public boolean org.apache.catalina.core.StandardContext.isServlet22() null -2024-09-20 17:47:17.904 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute preemptiveAuthentication public boolean org.apache.catalina.core.StandardContext.getPreemptiveAuthentication() public void org.apache.catalina.core.StandardContext.setPreemptiveAuthentication(boolean) -2024-09-20 17:47:17.904 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute tldValidation public boolean org.apache.catalina.core.StandardContext.getTldValidation() public void org.apache.catalina.core.StandardContext.setTldValidation(boolean) -2024-09-20 17:47:17.904 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute objectName public final javax.management.ObjectName org.apache.catalina.util.LifecycleMBeanBase.getObjectName() null -2024-09-20 17:47:17.904 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute xmlValidation public boolean org.apache.catalina.core.StandardContext.getXmlValidation() public void org.apache.catalina.core.StandardContext.setXmlValidation(boolean) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute effectiveMinorVersion public int org.apache.catalina.core.StandardContext.getEffectiveMinorVersion() public void org.apache.catalina.core.StandardContext.setEffectiveMinorVersion(int) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute catalinaHome public java.io.File org.apache.catalina.core.ContainerBase.getCatalinaHome() null -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute createUploadTargets public boolean org.apache.catalina.core.StandardContext.getCreateUploadTargets() public void org.apache.catalina.core.StandardContext.setCreateUploadTargets(boolean) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute stateName public java.lang.String org.apache.catalina.util.LifecycleBase.getStateName() null -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute path public java.lang.String org.apache.catalina.core.StandardContext.getPath() public void org.apache.catalina.core.StandardContext.setPath(java.lang.String) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute responseCharacterEncoding public java.lang.String org.apache.catalina.core.StandardContext.getResponseCharacterEncoding() public void org.apache.catalina.core.StandardContext.setResponseCharacterEncoding(java.lang.String) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute addWebinfClassesResources public boolean org.apache.catalina.core.StandardContext.getAddWebinfClassesResources() public void org.apache.catalina.core.StandardContext.setAddWebinfClassesResources(boolean) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute antiResourceLocking public boolean org.apache.catalina.core.StandardContext.getAntiResourceLocking() public void org.apache.catalina.core.StandardContext.setAntiResourceLocking(boolean) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute startupTime public long org.apache.catalina.core.StandardContext.getStartupTime() public void org.apache.catalina.core.StandardContext.setStartupTime(long) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesStopTimerThreads public boolean org.apache.catalina.core.StandardContext.getClearReferencesStopTimerThreads() public void org.apache.catalina.core.StandardContext.setClearReferencesStopTimerThreads(boolean) -2024-09-20 17:47:17.905 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute useNaming public boolean org.apache.catalina.core.StandardContext.isUseNaming() public void org.apache.catalina.core.StandardContext.setUseNaming(boolean) -2024-09-20 17:47:17.906 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute processingTime public long org.apache.catalina.core.StandardContext.getProcessingTime() null -2024-09-20 17:47:17.906 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sessionTimeout public int org.apache.catalina.core.StandardContext.getSessionTimeout() public void org.apache.catalina.core.StandardContext.setSessionTimeout(int) -2024-09-20 17:47:17.906 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestCount public int org.apache.catalina.core.StandardContext.getRequestCount() null -2024-09-20 17:47:17.906 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute publicId public java.lang.String org.apache.catalina.core.StandardContext.getPublicId() public void org.apache.catalina.core.StandardContext.setPublicId(java.lang.String) -2024-09-20 17:47:17.906 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute name public java.lang.String org.apache.catalina.core.ContainerBase.getName() public void org.apache.catalina.core.ContainerBase.setName(java.lang.String) -2024-09-20 17:47:17.906 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute loginConfig public org.apache.tomcat.util.descriptor.web.LoginConfig org.apache.catalina.core.StandardContext.getLoginConfig() public void org.apache.catalina.core.StandardContext.setLoginConfig(org.apache.tomcat.util.descriptor.web.LoginConfig) -2024-09-20 17:47:17.906 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute workDir public java.lang.String org.apache.catalina.core.StandardContext.getWorkDir() public void org.apache.catalina.core.StandardContext.setWorkDir(java.lang.String) -2024-09-20 17:47:17.906 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute j2EEServer public java.lang.String org.apache.catalina.core.StandardContext.getJ2EEServer() public void org.apache.catalina.core.StandardContext.setJ2EEServer(java.lang.String) -2024-09-20 17:47:17.907 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sessionCookieDomain public java.lang.String org.apache.catalina.core.StandardContext.getSessionCookieDomain() public void org.apache.catalina.core.StandardContext.setSessionCookieDomain(java.lang.String) -2024-09-20 17:47:17.907 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute validateClientProvidedNewSessionId public boolean org.apache.catalina.core.StandardContext.getValidateClientProvidedNewSessionId() public void org.apache.catalina.core.StandardContext.setValidateClientProvidedNewSessionId(boolean) -2024-09-20 17:47:17.907 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute javaVMs public java.lang.String[] org.apache.catalina.core.StandardContext.getJavaVMs() public java.lang.String[] org.apache.catalina.core.StandardContext.setJavaVMs(java.lang.String[]) -2024-09-20 17:47:17.907 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute useHttpOnly public boolean org.apache.catalina.core.StandardContext.getUseHttpOnly() public void org.apache.catalina.core.StandardContext.setUseHttpOnly(boolean) -2024-09-20 17:47:17.907 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute defaultWebXml public java.lang.String org.apache.catalina.core.StandardContext.getDefaultWebXml() public void org.apache.catalina.core.StandardContext.setDefaultWebXml(java.lang.String) -2024-09-20 17:47:17.907 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute paused public boolean org.apache.catalina.core.StandardContext.getPaused() null -2024-09-20 17:47:17.907 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute startStopThreads public int org.apache.catalina.core.ContainerBase.getStartStopThreads() public void org.apache.catalina.core.ContainerBase.setStartStopThreads(int) -2024-09-20 17:47:17.907 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxTime public long org.apache.catalina.core.StandardContext.getMaxTime() null -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute defaultContextXml public java.lang.String org.apache.catalina.core.StandardContext.getDefaultContextXml() public void org.apache.catalina.core.StandardContext.setDefaultContextXml(java.lang.String) -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute j2EEApplication public java.lang.String org.apache.catalina.core.StandardContext.getJ2EEApplication() public void org.apache.catalina.core.StandardContext.setJ2EEApplication(java.lang.String) -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute delegate public boolean org.apache.catalina.core.StandardContext.getDelegate() public void org.apache.catalina.core.StandardContext.setDelegate(boolean) -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute resourceOnlyServlets public java.lang.String org.apache.catalina.core.StandardContext.getResourceOnlyServlets() public void org.apache.catalina.core.StandardContext.setResourceOnlyServlets(java.lang.String) -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute unpackWAR public boolean org.apache.catalina.core.StandardContext.getUnpackWAR() public void org.apache.catalina.core.StandardContext.setUnpackWAR(boolean) -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute replaceWelcomeFiles null public void org.apache.catalina.core.StandardContext.setReplaceWelcomeFiles(boolean) -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute catalinaBase public java.io.File org.apache.catalina.core.ContainerBase.getCatalinaBase() null -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute renewThreadsWhenStoppingContext public boolean org.apache.catalina.core.StandardContext.getRenewThreadsWhenStoppingContext() public void org.apache.catalina.core.StandardContext.setRenewThreadsWhenStoppingContext(boolean) -2024-09-20 17:47:17.908 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute sessionCookiePathUsesTrailingSlash public boolean org.apache.catalina.core.StandardContext.getSessionCookiePathUsesTrailingSlash() public void org.apache.catalina.core.StandardContext.setSessionCookiePathUsesTrailingSlash(boolean) -2024-09-20 17:47:17.909 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute altDDName public java.lang.String org.apache.catalina.core.StandardContext.getAltDDName() public void org.apache.catalina.core.StandardContext.setAltDDName(java.lang.String) -2024-09-20 17:47:17.909 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute useRelativeRedirects public boolean org.apache.catalina.core.StandardContext.getUseRelativeRedirects() public void org.apache.catalina.core.StandardContext.setUseRelativeRedirects(boolean) -2024-09-20 17:47:17.909 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute swallowAbortedUploads public boolean org.apache.catalina.core.StandardContext.getSwallowAbortedUploads() public void org.apache.catalina.core.StandardContext.setSwallowAbortedUploads(boolean) -2024-09-20 17:47:17.909 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute throwOnFailure public boolean org.apache.catalina.util.LifecycleBase.getThrowOnFailure() public void org.apache.catalina.util.LifecycleBase.setThrowOnFailure(boolean) -2024-09-20 17:47:17.909 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute applicationLifecycleListeners public java.lang.Object[] org.apache.catalina.core.StandardContext.getApplicationLifecycleListeners() public void org.apache.catalina.core.StandardContext.setApplicationLifecycleListeners(java.lang.Object[]) -2024-09-20 17:47:17.909 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute dispatchersUseEncodedPaths public boolean org.apache.catalina.core.StandardContext.getDispatchersUseEncodedPaths() public void org.apache.catalina.core.StandardContext.setDispatchersUseEncodedPaths(boolean) -2024-09-20 17:47:17.909 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestCharacterEncoding public java.lang.String org.apache.catalina.core.StandardContext.getRequestCharacterEncoding() public void org.apache.catalina.core.StandardContext.setRequestCharacterEncoding(java.lang.String) -2024-09-20 17:47:17.910 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute domain public final java.lang.String org.apache.catalina.util.LifecycleMBeanBase.getDomain() public final void org.apache.catalina.util.LifecycleMBeanBase.setDomain(java.lang.String) -2024-09-20 17:47:17.910 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute namingContextListener public org.apache.catalina.core.NamingContextListener org.apache.catalina.core.StandardContext.getNamingContextListener() public void org.apache.catalina.core.StandardContext.setNamingContextListener(org.apache.catalina.core.NamingContextListener) -2024-09-20 17:47:17.910 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute ignoreAnnotations public boolean org.apache.catalina.core.StandardContext.getIgnoreAnnotations() public void org.apache.catalina.core.StandardContext.setIgnoreAnnotations(boolean) -2024-09-20 17:47:17.910 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute minTime public long org.apache.catalina.core.StandardContext.getMinTime() null -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute swallowOutput public boolean org.apache.catalina.core.StandardContext.getSwallowOutput() public void org.apache.catalina.core.StandardContext.setSwallowOutput(boolean) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute charsetMapper public org.apache.catalina.util.CharsetMapper org.apache.catalina.core.StandardContext.getCharsetMapper() public void org.apache.catalina.core.StandardContext.setCharsetMapper(org.apache.catalina.util.CharsetMapper) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute reloadable public boolean org.apache.catalina.core.StandardContext.getReloadable() public void org.apache.catalina.core.StandardContext.setReloadable(boolean) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute override public boolean org.apache.catalina.core.StandardContext.getOverride() public void org.apache.catalina.core.StandardContext.setOverride(boolean) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute distributable public boolean org.apache.catalina.core.StandardContext.getDistributable() public void org.apache.catalina.core.StandardContext.setDistributable(boolean) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesHttpClientKeepAliveThread public boolean org.apache.catalina.core.StandardContext.getClearReferencesHttpClientKeepAliveThread() public void org.apache.catalina.core.StandardContext.setClearReferencesHttpClientKeepAliveThread(boolean) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute tldScanTime public long org.apache.catalina.core.StandardContext.getTldScanTime() public void org.apache.catalina.core.StandardContext.setTldScanTime(long) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute xmlNamespaceAware public boolean org.apache.catalina.core.StandardContext.getXmlNamespaceAware() public void org.apache.catalina.core.StandardContext.setXmlNamespaceAware(boolean) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute applicationEventListeners public java.lang.Object[] org.apache.catalina.core.StandardContext.getApplicationEventListeners() public void org.apache.catalina.core.StandardContext.setApplicationEventListeners(java.lang.Object[]) -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute workPath public java.lang.String org.apache.catalina.core.StandardContext.getWorkPath() null -2024-09-20 17:47:17.911 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute mapperContextRootRedirectEnabled public boolean org.apache.catalina.core.StandardContext.getMapperContextRootRedirectEnabled() public void org.apache.catalina.core.StandardContext.setMapperContextRootRedirectEnabled(boolean) -2024-09-20 17:47:17.913 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Setting name: org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedContext -2024-09-20 17:47:17.913 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[] Tomcat:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:17.914 DEBUG 22604 --- [main] o.apache.catalina.core.StandardContext : Starting ROOT -2024-09-20 17:47:17.920 DEBUG 22604 --- [main] o.apache.catalina.core.StandardContext : Configuring default Resources -2024-09-20 17:47:17.924 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=WebResourceRoot,host=localhost,context=/ -2024-09-20 17:47:17.924 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:17.924 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Found jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/lib/tomcat-embed-core-9.0.17.jar!/org/apache/catalina/webresources/mbeans-descriptors.xml -2024-09-20 17:47:17.925 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : setDocumentLocator(com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser$LocatorProxy@5b94ccbc) -2024-09-20 17:47:17.925 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startDocument() -2024-09-20 17:47:17.925 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbeans-descriptors) -2024-09-20 17:47:17.925 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors' -2024-09-20 17:47:17.925 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.925 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.925 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.926 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.926 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.926 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.926 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.926 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.926 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'StandardRoot' -2024-09-20 17:47:17.926 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=StandardRoot) -2024-09-20 17:47:17.926 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Provides the resources implementation for a web application' -2024-09-20 17:47:17.927 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Provides the resources implementation for a web application) -2024-09-20 17:47:17.927 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.928 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.928 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'WebResourceRoot' -2024-09-20 17:47:17.928 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=WebResourceRoot) -2024-09-20 17:47:17.928 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.webresources.StandardRoot' -2024-09-20 17:47:17.928 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.webresources.StandardRoot) -2024-09-20 17:47:17.928 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.928 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.929 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.929 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.929 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.929 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.929 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.929 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.929 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'allowLinking' -2024-09-20 17:47:17.929 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=allowLinking) -2024-09-20 17:47:17.930 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this resources implementation allow the use of symbolic links?' -2024-09-20 17:47:17.930 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this resources implementation allow the use of symbolic links?) -2024-09-20 17:47:17.930 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.930 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.930 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'true' -2024-09-20 17:47:17.930 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=true) -2024-09-20 17:47:17.930 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.931 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.931 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.931 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.931 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.931 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.931 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.931 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.931 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@38a1c423) -2024-09-20 17:47:17.932 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.932 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.932 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.932 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.932 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.932 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.932 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.932 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.933 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.933 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.933 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.933 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'cachingAllowed' -2024-09-20 17:47:17.933 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=cachingAllowed) -2024-09-20 17:47:17.933 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Is in memory caching of resource content and metadata enabled?' -2024-09-20 17:47:17.933 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Is in memory caching of resource content and metadata enabled?) -2024-09-20 17:47:17.933 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.934 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.934 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'is' to 'true' -2024-09-20 17:47:17.934 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo is=true) -2024-09-20 17:47:17.934 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'true' -2024-09-20 17:47:17.934 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=true) -2024-09-20 17:47:17.934 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.934 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.934 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.935 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.935 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.935 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.936 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.936 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.936 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@336365bc) -2024-09-20 17:47:17.936 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.936 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.936 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.936 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.937 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.937 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.937 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.937 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.937 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.937 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.937 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.937 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'stateName' -2024-09-20 17:47:17.938 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=stateName) -2024-09-20 17:47:17.938 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The current Lifecycle state of this object' -2024-09-20 17:47:17.938 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The current Lifecycle state of this object) -2024-09-20 17:47:17.938 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.lang.String' -2024-09-20 17:47:17.938 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.lang.String) -2024-09-20 17:47:17.938 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.938 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.938 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.939 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.939 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.939 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.939 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.939 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.939 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.939 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.939 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@38eb2fb0) -2024-09-20 17:47:17.940 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.940 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.940 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.940 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.940 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.940 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.940 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.940 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.941 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.941 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.941 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.941 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'trackLockedFiles' -2024-09-20 17:47:17.941 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=trackLockedFiles) -2024-09-20 17:47:17.941 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'Does this resources implementation track requests that lock files?' -2024-09-20 17:47:17.941 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=Does this resources implementation track requests that lock files?) -2024-09-20 17:47:17.942 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'boolean' -2024-09-20 17:47:17.942 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=boolean) -2024-09-20 17:47:17.942 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'true' -2024-09-20 17:47:17.942 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=true) -2024-09-20 17:47:17.942 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.942 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.942 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.942 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.943 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.943 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.943 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.943 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.943 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4567e53d) -2024-09-20 17:47:17.943 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.944 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.945 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.946 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'trackedResources' -2024-09-20 17:47:17.946 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=trackedResources) -2024-09-20 17:47:17.946 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'List of resources currently being tracked for possible resource leaks' -2024-09-20 17:47:17.946 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=List of resources currently being tracked for possible resource leaks) -2024-09-20 17:47:17.946 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'java.util.List' -2024-09-20 17:47:17.946 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=java.util.List) -2024-09-20 17:47:17.946 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.947 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.948 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@7351a16e) -2024-09-20 17:47:17.948 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.948 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.948 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.948 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.948 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.948 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.948 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.949 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - ' -2024-09-20 17:47:17.949 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.949 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.949 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.949 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.949 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=StandardRoot, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Provides the resources implementation for a web application, group=WebResourceRoot, type=org.apache.catalina.webresources.StandardRoot]) -2024-09-20 17:47:17.949 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.950 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.950 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.950 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.950 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.950 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,mbean) -2024-09-20 17:47:17.950 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.950 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.950 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean}New org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.951 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.951 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Set org.apache.tomcat.util.modeler.ManagedBean properties -2024-09-20 17:47:17.951 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'name' to 'Cache' -2024-09-20 17:47:17.951 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean name=Cache) -2024-09-20 17:47:17.951 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'description' to 'Provides caching of resource metadata and content' -2024-09-20 17:47:17.951 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean description=Provides caching of resource metadata and content) -2024-09-20 17:47:17.952 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'domain' to 'Catalina' -2024-09-20 17:47:17.952 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean domain=Catalina) -2024-09-20 17:47:17.952 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'group' to 'WebResourceRoot' -2024-09-20 17:47:17.952 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean group=WebResourceRoot) -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean} Setting property 'type' to 'org.apache.catalina.webresources.Cache' -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.ManagedBean type=org.apache.catalina.webresources.Cache) -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'hitCount' -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=hitCount) -2024-09-20 17:47:17.953 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The number of requests for resources that were served from the cache' -2024-09-20 17:47:17.954 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The number of requests for resources that were served from the cache) -2024-09-20 17:47:17.954 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.954 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.954 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.954 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.954 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.954 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.954 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.955 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.955 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.955 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.955 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.955 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.955 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5bb7643d) -2024-09-20 17:47:17.955 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.955 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.956 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.956 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.956 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.956 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.956 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.956 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.956 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.956 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.957 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.957 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'lookupCount' -2024-09-20 17:47:17.957 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=lookupCount) -2024-09-20 17:47:17.957 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The number of requests for resources' -2024-09-20 17:47:17.957 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The number of requests for resources) -2024-09-20 17:47:17.957 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.957 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.957 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.958 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.959 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ac04654) -2024-09-20 17:47:17.959 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.959 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.959 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.959 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.959 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.959 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.959 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.960 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.960 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.960 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.960 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.960 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'maxSize' -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=maxSize) -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The maximum permitted size of the cache in kB' -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The maximum permitted size of the cache in kB) -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'true' -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=true) -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.961 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.962 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.962 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.962 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.962 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.962 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.962 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.962 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@4074023c) -2024-09-20 17:47:17.962 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.963 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.964 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.964 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'objectMaxSize' -2024-09-20 17:47:17.964 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=objectMaxSize) -2024-09-20 17:47:17.964 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The maximum permitted size for a single object in the cache in kB' -2024-09-20 17:47:17.964 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The maximum permitted size for a single object in the cache in kB) -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'int' -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=int) -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'true' -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=true) -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.965 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@3ed0918d) -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.966 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.967 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.967 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.967 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.967 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.967 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.968 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.968 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'size' -2024-09-20 17:47:17.968 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=size) -2024-09-20 17:47:17.968 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The current estimate of the cache size in kB' -2024-09-20 17:47:17.969 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The current estimate of the cache size in kB) -2024-09-20 17:47:17.969 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.969 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.969 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'false' -2024-09-20 17:47:17.969 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=false) -2024-09-20 17:47:17.969 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@5e268ce6) -2024-09-20 17:47:17.970 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.971 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.971 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.971 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.971 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.971 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,attribute) -2024-09-20 17:47:17.971 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.971 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.971 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute}New org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Set org.apache.tomcat.util.modeler.AttributeInfo properties -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'name' to 'ttl' -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo name=ttl) -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'description' to 'The time-to-live for cache entries in milliseconds' -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo description=The time-to-live for cache entries in milliseconds) -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'type' to 'long' -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo type=long) -2024-09-20 17:47:17.972 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/attribute} Setting property 'writeable' to 'true' -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.AttributeInfo writeable=true) -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,attribute) -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/attribute' -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText='' -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addAttribute, paramType=org.apache.tomcat.util.modeler.AttributeInfo] -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/attribute} Call org.apache.tomcat.util.modeler.ManagedBean.addAttribute(org.apache.tomcat.util.modeler.AttributeInfo@66ec9390) -2024-09-20 17:47:17.973 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.AttributeInfo org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.AttributeInfo, attributeName=null] -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/attribute} Pop org.apache.tomcat.util.modeler.AttributeInfo -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : startElement(,,operation) -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : New match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation}New org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetPropertiesRule[] -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Set org.apache.tomcat.util.modeler.OperationInfo properties -2024-09-20 17:47:17.974 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'name' to 'clear' -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo name=clear) -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'description' to 'Clears all cached content from the cache.' -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo description=Clears all cached content from the cache.) -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'impact' to 'ACTION' -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo impact=ACTION) -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetPropertiesRule]{mbeans-descriptors/mbean/operation} Setting property 'returnType' to 'void' -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.apache.tomcat.util.modeler.OperationInfo returnType=void) -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire begin() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - ) -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,operation) -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean/operation' -2024-09-20 17:47:17.975 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - ' -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=addOperation, paramType=org.apache.tomcat.util.modeler.OperationInfo] -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean/operation} Call org.apache.tomcat.util.modeler.ManagedBean.addOperation(org.apache.tomcat.util.modeler.OperationInfo@6e91893) -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 org.apache.tomcat.util.modeler.ManagedBean org.apache.tomcat.util.modeler.OperationInfo org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.OperationInfo, attributeName=null] -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean/operation} Pop org.apache.tomcat.util.modeler.OperationInfo -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - - ) -2024-09-20 17:47:17.976 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbean) -2024-09-20 17:47:17.977 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors/mbean' -2024-09-20 17:47:17.977 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - - - - - - - - - - - - ' -2024-09-20 17:47:17.977 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.977 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetPropertiesRule[] -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire body() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetNextRule[methodName=add, paramType=java.lang.Object] -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [SetNextRule]{mbeans-descriptors/mbean} Call java.util.ArrayList.add(ManagedBean[name=Cache, className=org.apache.tomcat.util.modeler.BaseModelMBean, description=Provides caching of resource metadata and content, group=WebResourceRoot, type=org.apache.catalina.webresources.Cache]) -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: callMethod1 java.util.ArrayList org.apache.tomcat.util.modeler.ManagedBean java.lang.Object -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for SetPropertiesRule[] -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : Fire end() for ObjectCreateRule[className=org.apache.tomcat.util.modeler.ManagedBean, attributeName=null] -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : [ObjectCreateRule]{mbeans-descriptors/mbean} Pop org.apache.tomcat.util.modeler.ManagedBean -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : characters( - -) -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endElement(,,mbeans-descriptors) -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : match='mbeans-descriptors' -2024-09-20 17:47:17.978 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : bodyText=' - - - - - -' -2024-09-20 17:47:17.979 DEBUG 22604 --- [main] o.apache.tomcat.util.digester.Digester : No rules found matching [mbeans-descriptors] -2024-09-20 17:47:17.979 DEBUG 22604 --- [main] o.a.tomcat.util.digester.Digester.sax : endDocument() -2024-09-20 17:47:17.979 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.catalina.webresources.StandardRoot@3c0fbd3a Tomcat:type=WebResourceRoot,host=localhost,context=/ -2024-09-20 17:47:17.979 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=WebResourceRoot,host=localhost,context=/,name=Cache -2024-09-20 17:47:17.979 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.catalina.webresources.Cache@562457e1 Tomcat:type=WebResourceRoot,host=localhost,context=/,name=Cache -2024-09-20 17:47:17.989 DEBUG 22604 --- [main] o.apache.catalina.core.StandardContext : Processing standard container startup -2024-09-20 17:47:17.990 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Loader,host=localhost,context=/ -2024-09-20 17:47:17.990 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] Tomcat:type=Loader,host=localhost,context=/ -2024-09-20 17:47:17.991 DEBUG 22604 --- [main] org.apache.catalina.loader.WebappLoader : Starting this Loader -2024-09-20 17:47:17.995 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=TomcatEmbeddedWebappClassLoader,host=localhost,context=/ -2024-09-20 17:47:17.996 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:17.997 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Introspecting -2024-09-20 17:47:17.997 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.WebResourceRoot org.apache.catalina.loader.WebappClassLoaderBase.getResources() -2024-09-20 17:47:17.998 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public org.apache.catalina.LifecycleState org.apache.catalina.loader.WebappClassLoaderBase.getState() -2024-09-20 17:47:17.998 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public java.net.URL[] org.apache.catalina.loader.WebappClassLoaderBase.getURLs() -2024-09-20 17:47:17.998 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public void org.apache.catalina.loader.WebappClassLoaderBase.setResources(org.apache.catalina.WebResourceRoot) interface org.apache.catalina.WebResourceRoot -2024-09-20 17:47:17.999 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public final java.lang.ClassLoader java.lang.ClassLoader.getParent() -2024-09-20 17:47:17.999 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public final java.lang.Module java.lang.ClassLoader.getUnnamedModule() -2024-09-20 17:47:17.999 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Unsupported type public final java.lang.Package[] java.lang.ClassLoader.getDefinedPackages() -2024-09-20 17:47:18.000 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute name public java.lang.String java.lang.ClassLoader.getName() null -2024-09-20 17:47:18.000 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute hostName public java.lang.String org.apache.catalina.loader.WebappClassLoaderBase.getHostName() null -2024-09-20 17:47:18.000 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesThreadLocals public boolean org.apache.catalina.loader.WebappClassLoaderBase.getClearReferencesThreadLocals() public void org.apache.catalina.loader.WebappClassLoaderBase.setClearReferencesThreadLocals(boolean) -2024-09-20 17:47:18.000 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute contextName public java.lang.String org.apache.catalina.loader.WebappClassLoaderBase.getContextName() null -2024-09-20 17:47:18.000 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesStopThreads public boolean org.apache.catalina.loader.WebappClassLoaderBase.getClearReferencesStopThreads() public void org.apache.catalina.loader.WebappClassLoaderBase.setClearReferencesStopThreads(boolean) -2024-09-20 17:47:18.001 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesStopTimerThreads public boolean org.apache.catalina.loader.WebappClassLoaderBase.getClearReferencesStopTimerThreads() public void org.apache.catalina.loader.WebappClassLoaderBase.setClearReferencesStopTimerThreads(boolean) -2024-09-20 17:47:18.001 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesRmiTargets public boolean org.apache.catalina.loader.WebappClassLoaderBase.getClearReferencesRmiTargets() public void org.apache.catalina.loader.WebappClassLoaderBase.setClearReferencesRmiTargets(boolean) -2024-09-20 17:47:18.001 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesObjectStreamClassCaches public boolean org.apache.catalina.loader.WebappClassLoaderBase.getClearReferencesObjectStreamClassCaches() public void org.apache.catalina.loader.WebappClassLoaderBase.setClearReferencesObjectStreamClassCaches(boolean) -2024-09-20 17:47:18.002 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute serviceName public java.lang.String org.apache.catalina.loader.WebappClassLoaderBase.getServiceName() null -2024-09-20 17:47:18.002 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute defaultAssertionStatus null public void java.lang.ClassLoader.setDefaultAssertionStatus(boolean) -2024-09-20 17:47:18.002 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute delegate public boolean org.apache.catalina.loader.WebappClassLoaderBase.getDelegate() public void org.apache.catalina.loader.WebappClassLoaderBase.setDelegate(boolean) -2024-09-20 17:47:18.002 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute webappName public java.lang.String org.apache.catalina.loader.WebappClassLoaderBase.getWebappName() null -2024-09-20 17:47:18.003 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute skipMemoryLeakChecksOnJvmShutdown public boolean org.apache.catalina.loader.WebappClassLoaderBase.getSkipMemoryLeakChecksOnJvmShutdown() public void org.apache.catalina.loader.WebappClassLoaderBase.setSkipMemoryLeakChecksOnJvmShutdown(boolean) -2024-09-20 17:47:18.003 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesLogFactoryRelease public boolean org.apache.catalina.loader.WebappClassLoaderBase.getClearReferencesLogFactoryRelease() public void org.apache.catalina.loader.WebappClassLoaderBase.setClearReferencesLogFactoryRelease(boolean) -2024-09-20 17:47:18.003 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute stateName public java.lang.String org.apache.catalina.loader.WebappClassLoaderBase.getStateName() null -2024-09-20 17:47:18.003 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute clearReferencesHttpClientKeepAliveThread public boolean org.apache.catalina.loader.WebappClassLoaderBase.getClearReferencesHttpClientKeepAliveThread() public void org.apache.catalina.loader.WebappClassLoaderBase.setClearReferencesHttpClientKeepAliveThread(boolean) -2024-09-20 17:47:18.003 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute registeredAsParallelCapable public final boolean java.lang.ClassLoader.isRegisteredAsParallelCapable() null -2024-09-20 17:47:18.004 DEBUG 22604 --- [main] m.m.MbeansDescriptorsIntrospectionSource : Setting name: org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader -2024-09-20 17:47:18.004 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister TomcatEmbeddedWebappClassLoader - context: ROOT - delegate: true -----------> Parent Classloader: -org.springframework.boot.loader.LaunchedURLClassLoader@c038203 - Tomcat:type=TomcatEmbeddedWebappClassLoader,host=localhost,context=/ -2024-09-20 17:47:18.004 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesRmiTargets=false) -2024-09-20 17:47:18.004 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesStopThreads=false) -2024-09-20 17:47:18.005 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesStopTimerThreads=false) -2024-09-20 17:47:18.005 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesHttpClientKeepAliveThread=true) -2024-09-20 17:47:18.005 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesObjectStreamClassCaches=false) -2024-09-20 17:47:18.005 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesObjectStreamClassCaches=false) -2024-09-20 17:47:18.006 DEBUG 22604 --- [main] o.apache.tomcat.util.IntrospectionUtils : IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesThreadLocals=false) -2024-09-20 17:47:18.017 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Servlet,WebModule=//localhost/,name=default,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.017 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[default] Tomcat:j2eeType=Servlet,WebModule=//localhost/,name=default,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.017 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Valve,host=localhost,context=/,name=NonLoginAuthenticator -2024-09-20 17:47:18.018 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] Tomcat:type=Valve,host=localhost,context=/,name=NonLoginAuthenticator -2024-09-20 17:47:18.018 DEBUG 22604 --- [main] o.a.c.authenticator.AuthenticatorBase : No SingleSignOn Valve is present -2024-09-20 17:47:18.019 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Valve,host=localhost,context=/,name=StandardContextValve -2024-09-20 17:47:18.019 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] Tomcat:type=Valve,host=localhost,context=/,name=StandardContextValve -2024-09-20 17:47:18.020 DEBUG 22604 --- [main] o.apache.catalina.core.StandardContext : No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-09-20 17:47:18.023 DEBUG 22604 --- [main] o.apache.catalina.core.StandardContext : Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-09-20 17:47:18.024 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=NamingResources,host=localhost,context=/ -2024-09-20 17:47:18.024 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.catalina.deploy.NamingResourcesImpl@6d171ce0 Tomcat:type=NamingResources,host=localhost,context=/ -2024-09-20 17:47:18.027 INFO 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext -2024-09-20 17:47:18.027 DEBUG 22604 --- [main] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-09-20 17:47:18.027 INFO 22604 --- [main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 5087 ms -2024-09-20 17:47:18.030 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'corsFilter' -2024-09-20 17:47:18.031 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'corsConfig' -2024-09-20 17:47:18.041 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'filterShiroFilterRegistrationBean' -2024-09-20 17:47:18.042 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroWebFilterConfiguration' -2024-09-20 17:47:18.046 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'shiroFilterChainDefinition' -2024-09-20 17:47:18.047 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroWebAutoConfiguration' -2024-09-20 17:47:18.084 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'productionSecurityFilter' -2024-09-20 17:47:18.084 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'com.github.xiaoymin.swaggerbootstrapui.configuration.SecurityConfiguration' -2024-09-20 17:47:18.088 DEBUG 22604 --- [main] c.g.x.s.c.SecurityConfiguration : swagger.production:null -2024-09-20 17:47:18.090 DEBUG 22604 --- [main] o.a.s.spring.web.ShiroFilterFactoryBean : Found filter chain candidate filter 'productionSecurityFilter' -2024-09-20 17:47:18.091 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'securityBasicAuthFilter' -2024-09-20 17:47:18.091 DEBUG 22604 --- [main] o.a.s.spring.web.ShiroFilterFactoryBean : Found filter chain candidate filter 'securityBasicAuthFilter' -2024-09-20 17:47:18.093 DEBUG 22604 --- [main] o.a.s.spring.web.ShiroFilterFactoryBean : Creating Shiro Filter instance. -2024-09-20 17:47:18.097 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/exam/api/sys/user/login] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.097 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/exam/api/sys/user/login] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.099 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/exam/api/sys/user/login] to filter [anon] with config [null] -2024-09-20 17:47:18.099 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/exam/api/sys/user/reg] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/exam/api/sys/user/reg] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/exam/api/sys/user/reg] to filter [anon] with config [null] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/exam/api/sys/user/quick-reg] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/exam/api/sys/user/quick-reg] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/exam/api/sys/user/quick-reg] to filter [anon] with config [null] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/exam/api/sys/config/detail] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/exam/api/sys/config/detail] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/exam/api/sys/config/detail] to filter [anon] with config [null] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/upload/file/**] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.101 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/upload/file/**] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.102 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/upload/file/**] to filter [anon] with config [null] -2024-09-20 17:47:18.102 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.102 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.102 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/] to filter [anon] with config [null] -2024-09-20 17:47:18.102 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/v2/**] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.102 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/v2/**] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.103 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/v2/**] to filter [anon] with config [null] -2024-09-20 17:47:18.103 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/doc.html] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.103 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/doc.html] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.103 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/doc.html] to filter [anon] with config [null] -2024-09-20 17:47:18.103 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.js] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.104 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.js] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.104 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.js] to filter [anon] with config [null] -2024-09-20 17:47:18.104 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.css] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.104 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.css] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.104 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.css] to filter [anon] with config [null] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.html] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.html] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.html] to filter [anon] with config [null] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.svg] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.svg] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.svg] to filter [anon] with config [null] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.pdf] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.pdf] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.105 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.pdf] to filter [anon] with config [null] -2024-09-20 17:47:18.106 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.jpg] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.106 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.jpg] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.106 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.jpg] to filter [anon] with config [null] -2024-09-20 17:47:18.106 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.png] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.106 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.png] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.106 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.png] to filter [anon] with config [null] -2024-09-20 17:47:18.106 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.ico] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.106 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.ico] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.107 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.ico] to filter [anon] with config [null] -2024-09-20 17:47:18.107 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.ttf] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.107 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.ttf] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.ttf] to filter [anon] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.woff] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.woff] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.woff] to filter [anon] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**/*.woff2] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.woff2] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**/*.woff2] to filter [anon] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/druid/**] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/druid/**] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/druid/**] to filter [anon] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/swagger-ui.html] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/swagger-ui.html] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.108 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/swagger-ui.html] to filter [anon] with config [null] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/swagger**/**] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/swagger**/**] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/swagger**/**] to filter [anon] with config [null] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/webjars/**] with global filters [invalidRequest] and from String definition [anon] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/webjars/**] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/webjars/**] to filter [anon] with config [null] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Creating chain [/**] with global filters [invalidRequest] and from String definition [jwt] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**] to filter [invalidRequest] with config [null] -2024-09-20 17:47:18.109 DEBUG 22604 --- [main] o.a.s.w.f.mgt.DefaultFilterChainManager : Attempting to apply path [/**] to filter [jwt] with config [null] -2024-09-20 17:47:18.120 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestContextFilter' -2024-09-20 17:47:18.121 DEBUG 22604 --- [main] o.a.s.spring.web.ShiroFilterFactoryBean : Found filter chain candidate filter 'requestContextFilter' -2024-09-20 17:47:18.124 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'hiddenHttpMethodFilter' -2024-09-20 17:47:18.125 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-09-20 17:47:18.133 DEBUG 22604 --- [main] o.a.s.spring.web.ShiroFilterFactoryBean : Found filter chain candidate filter 'hiddenHttpMethodFilter' -2024-09-20 17:47:18.136 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'formContentFilter' -2024-09-20 17:47:18.142 DEBUG 22604 --- [main] o.a.s.spring.web.ShiroFilterFactoryBean : Found filter chain candidate filter 'formContentFilter' -2024-09-20 17:47:18.148 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'characterEncodingFilter' -2024-09-20 17:47:18.150 DEBUG 22604 --- [main] o.a.s.spring.web.ShiroFilterFactoryBean : Found filter chain candidate filter 'characterEncodingFilter' -2024-09-20 17:47:18.185 DEBUG 22604 --- [main] o.s.b.w.s.ServletContextInitializerBeans : Mapping filters: filterRegistrationBean urls=[/*], shiroFilter urls=[/*], characterEncodingFilter urls=[/*], hiddenHttpMethodFilter urls=[/*], formContentFilter urls=[/*], requestContextFilter urls=[/*], productionSecurityFilter urls=[/*], securityBasicAuthFilter urls=[/*] -2024-09-20 17:47:18.185 DEBUG 22604 --- [main] o.s.b.w.s.ServletContextInitializerBeans : Mapping servlets: dispatcherServlet urls=[/] -2024-09-20 17:47:18.190 DEBUG 22604 --- [main] org.apache.catalina.core.ContainerBase : Add child StandardWrapper[dispatcherServlet] StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[] -2024-09-20 17:47:18.190 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Servlet,WebModule=//localhost/,name=dispatcherServlet,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.191 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet] Tomcat:j2eeType=Servlet,WebModule=//localhost/,name=dispatcherServlet,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.193 DEBUG 22604 --- [main] o.apache.catalina.core.StandardContext : Configuring application event listeners -2024-09-20 17:47:18.194 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Configuring event listener class 'org.apache.tomcat.websocket.server.WsContextListener' -2024-09-20 17:47:18.195 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Sending application start events -2024-09-20 17:47:18.209 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Manager,host=localhost,context=/ -2024-09-20 17:47:18.209 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] Tomcat:type=Manager,host=localhost,context=/ -2024-09-20 17:47:18.209 DEBUG 22604 --- [main] o.a.catalina.session.StandardManager : Start: Loading persisted sessions -2024-09-20 17:47:18.210 DEBUG 22604 --- [main] o.a.catalina.session.StandardManager : Loading persisted sessions from [SESSIONS.ser] -2024-09-20 17:47:18.211 DEBUG 22604 --- [main] o.a.catalina.session.StandardManager : No persisted data file found -2024-09-20 17:47:18.211 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filters -2024-09-20 17:47:18.212 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'requestContextFilter' -2024-09-20 17:47:18.215 DEBUG 22604 --- [main] o.s.b.w.s.f.OrderedRequestContextFilter : Filter 'requestContextFilter' configured for use -2024-09-20 17:47:18.215 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=requestContextFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.216 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=requestContextFilter, filterClass=org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=requestContextFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.216 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'shiroFilter' -2024-09-20 17:47:18.217 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=shiroFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.217 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=shiroFilter, filterClass=org.apache.shiro.spring.web.ShiroFilterFactoryBean$SpringShiroFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=shiroFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.217 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'Tomcat WebSocket (JSR356) Filter' -2024-09-20 17:47:18.217 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.217 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=Tomcat WebSocket (JSR356) Filter, filterClass=org.apache.tomcat.websocket.server.WsFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.218 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'corsFilter' -2024-09-20 17:47:18.218 DEBUG 22604 --- [main] o.springframework.web.filter.CorsFilter : Filter 'corsFilter' configured for use -2024-09-20 17:47:18.218 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=corsFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.219 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=corsFilter, filterClass=org.springframework.web.filter.CorsFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=corsFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.219 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'hiddenHttpMethodFilter' -2024-09-20 17:47:18.219 DEBUG 22604 --- [main] .s.b.w.s.f.OrderedHiddenHttpMethodFilter : Filter 'hiddenHttpMethodFilter' configured for use -2024-09-20 17:47:18.220 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=hiddenHttpMethodFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.220 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=hiddenHttpMethodFilter, filterClass=org.springframework.boot.web.servlet.filter.OrderedHiddenHttpMethodFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=hiddenHttpMethodFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.221 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'productionSecurityFilter' -2024-09-20 17:47:18.221 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=productionSecurityFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.221 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=productionSecurityFilter, filterClass=com.github.xiaoymin.swaggerbootstrapui.filter.ProductionSecurityFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=productionSecurityFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.221 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'securityBasicAuthFilter' -2024-09-20 17:47:18.222 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=securityBasicAuthFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.222 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=securityBasicAuthFilter, filterClass=com.github.xiaoymin.swaggerbootstrapui.filter.SecurityBasicAuthFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=securityBasicAuthFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.222 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'characterEncodingFilter' -2024-09-20 17:47:18.222 DEBUG 22604 --- [main] s.b.w.s.f.OrderedCharacterEncodingFilter : Filter 'characterEncodingFilter' configured for use -2024-09-20 17:47:18.222 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.222 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=characterEncodingFilter, filterClass=org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.222 DEBUG 22604 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Starting filter 'formContentFilter' -2024-09-20 17:47:18.223 DEBUG 22604 --- [main] o.s.b.w.s.f.OrderedFormContentFilter : Filter 'formContentFilter' configured for use -2024-09-20 17:47:18.223 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:j2eeType=Filter,WebModule=//localhost/,name=formContentFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.223 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ApplicationFilterConfig[name=formContentFilter, filterClass=org.springframework.boot.web.servlet.filter.OrderedFormContentFilter] Tomcat:j2eeType=Filter,WebModule=//localhost/,name=formContentFilter,J2EEApplication=none,J2EEServer=none -2024-09-20 17:47:18.223 DEBUG 22604 --- [main] o.apache.catalina.core.StandardContext : Starting completed -2024-09-20 17:47:18.224 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Valve,host=localhost,name=ErrorReportValve -2024-09-20 17:47:18.224 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]] Tomcat:type=Valve,host=localhost,name=ErrorReportValve -2024-09-20 17:47:18.225 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Valve,host=localhost,name=StandardHostValve -2024-09-20 17:47:18.225 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]] Tomcat:type=Valve,host=localhost,name=StandardHostValve -2024-09-20 17:47:18.225 DEBUG 22604 --- [main] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=Valve,name=StandardEngineValve -2024-09-20 17:47:18.225 DEBUG 22604 --- [main] o.a.tomcat.util.modeler.BaseModelMBean : preRegister StandardEngineValve[StandardEngine[Tomcat]] Tomcat:type=Valve,name=StandardEngineValve -2024-09-20 17:47:18.230 DEBUG 22604 --- [main] org.apache.catalina.mapper.Mapper : Registered host [localhost] -2024-09-20 17:47:18.230 DEBUG 22604 --- [main] o.apache.catalina.mapper.MapperListener : Register Wrapper [default] in Context [] for service [StandardService[Tomcat]] -2024-09-20 17:47:18.231 DEBUG 22604 --- [main] o.apache.catalina.mapper.MapperListener : Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-09-20 17:47:18.232 DEBUG 22604 --- [main] o.apache.catalina.mapper.MapperListener : Register Context [] for service [StandardService[Tomcat]] -2024-09-20 17:47:18.233 DEBUG 22604 --- [main] o.apache.catalina.mapper.MapperListener : Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-09-20 17:47:18.240 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examApplication' -2024-09-20 17:47:18.251 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'userBookServiceImpl' -2024-09-20 17:47:18.262 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'userBookMapper' -2024-09-20 17:47:18.269 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sqlSessionFactory' -2024-09-20 17:47:18.269 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' -2024-09-20 17:47:18.270 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration$$EnhancerBySpringCGLIB$$e3870c3] - unable to determine constructor/method parameter names -2024-09-20 17:47:18.272 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' -2024-09-20 17:47:18.280 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' via constructor to bean named 'mybatis-plus-com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties' -2024-09-20 17:47:18.280 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd' -2024-09-20 17:47:18.282 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'queryInterceptor' -2024-09-20 17:47:18.283 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mybatisConfig' -2024-09-20 17:47:18.300 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'updateInterceptor' -2024-09-20 17:47:18.313 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dataSource' -2024-09-20 17:47:18.314 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure' -2024-09-20 17:47:18.318 INFO 22604 --- [main] c.a.d.s.b.a.DruidDataSourceAutoConfigure : Init DruidDataSource -2024-09-20 17:47:18.387 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-09-20 17:47:18.528 INFO 22604 --- [main] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited -2024-09-20 17:47:18.599 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' -2024-09-20 17:47:18.602 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-09-20 17:47:18.602 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd' -2024-09-20 17:47:18.619 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'sqlSessionFactory' via factory method to bean named 'dataSource' -2024-09-20 17:47:18.700 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Registered plugin: 'AbstractSqlParserHandler(sqlParserList=null, sqlParserFilter=null)' -2024-09-20 17:47:18.700 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Registered plugin: 'AbstractSqlParserHandler(sqlParserList=null, sqlParserFilter=null)' -2024-09-20 17:47:18.809 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.sumObjective -2024-09-20 17:47:18.809 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.sumSubjective -2024-09-20 17:47:18.810 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.listByPaper -2024-09-20 17:47:18.838 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.insert -2024-09-20 17:47:18.845 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.delete -2024-09-20 17:47:18.848 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.deleteByMap -2024-09-20 17:47:18.849 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.deleteById -2024-09-20 17:47:18.850 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.deleteBatchIds -2024-09-20 17:47:18.858 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.update -2024-09-20 17:47:18.860 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.updateById -2024-09-20 17:47:18.861 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectById -2024-09-20 17:47:18.863 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectBatchIds -2024-09-20 17:47:18.864 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectByMap -2024-09-20 17:47:18.866 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectOne -2024-09-20 17:47:18.868 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectCount -2024-09-20 17:47:18.870 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectMaps -2024-09-20 17:47:18.871 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectMapsPage -2024-09-20 17:47:18.873 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectObjs -2024-09-20 17:47:18.876 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectList -2024-09-20 17:47:18.880 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuMapper.selectPage -2024-09-20 17:47:18.881 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/paper/PaperQuMapper.xml]' -2024-09-20 17:47:18.895 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.insert -2024-09-20 17:47:18.899 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.delete -2024-09-20 17:47:18.903 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.deleteByMap -2024-09-20 17:47:18.906 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.deleteById -2024-09-20 17:47:18.910 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.deleteBatchIds -2024-09-20 17:47:18.912 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.update -2024-09-20 17:47:18.915 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.updateById -2024-09-20 17:47:18.915 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectById -2024-09-20 17:47:18.916 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectBatchIds -2024-09-20 17:47:18.920 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectByMap -2024-09-20 17:47:18.921 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectOne -2024-09-20 17:47:18.924 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectCount -2024-09-20 17:47:18.926 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectMaps -2024-09-20 17:47:18.928 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectMapsPage -2024-09-20 17:47:18.929 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectObjs -2024-09-20 17:47:18.930 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectList -2024-09-20 17:47:18.932 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysRoleMapper.selectPage -2024-09-20 17:47:18.932 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/sys/user/SysRoleMapper.xml]' -2024-09-20 17:47:18.938 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.system.mapper.SysDictMapper.findDict -2024-09-20 17:47:18.939 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/sys/system/SysDictMapper.xml]' -2024-09-20 17:47:18.946 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.listByExam -2024-09-20 17:47:18.948 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.insert -2024-09-20 17:47:18.949 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.delete -2024-09-20 17:47:18.950 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.deleteByMap -2024-09-20 17:47:18.951 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.deleteById -2024-09-20 17:47:18.951 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.deleteBatchIds -2024-09-20 17:47:18.953 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.update -2024-09-20 17:47:18.953 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.updateById -2024-09-20 17:47:18.954 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectById -2024-09-20 17:47:18.955 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectBatchIds -2024-09-20 17:47:18.956 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectByMap -2024-09-20 17:47:18.956 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectOne -2024-09-20 17:47:18.957 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectCount -2024-09-20 17:47:18.958 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectMaps -2024-09-20 17:47:18.959 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectMapsPage -2024-09-20 17:47:18.960 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectObjs -2024-09-20 17:47:18.962 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectList -2024-09-20 17:47:18.963 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamRepoMapper.selectPage -2024-09-20 17:47:18.964 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/exam/ExamRepoMapper.xml]' -2024-09-20 17:47:18.969 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.list -2024-09-20 17:47:18.969 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.listForShow -2024-09-20 17:47:18.971 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.insert -2024-09-20 17:47:18.972 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.delete -2024-09-20 17:47:18.973 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.deleteByMap -2024-09-20 17:47:18.974 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.deleteById -2024-09-20 17:47:18.975 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.deleteBatchIds -2024-09-20 17:47:18.976 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.update -2024-09-20 17:47:18.977 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.updateById -2024-09-20 17:47:18.978 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectById -2024-09-20 17:47:18.980 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectBatchIds -2024-09-20 17:47:18.980 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectByMap -2024-09-20 17:47:18.981 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectOne -2024-09-20 17:47:18.982 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectCount -2024-09-20 17:47:18.983 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectMaps -2024-09-20 17:47:18.984 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectMapsPage -2024-09-20 17:47:18.985 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectObjs -2024-09-20 17:47:18.985 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectList -2024-09-20 17:47:18.986 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperQuAnswerMapper.selectPage -2024-09-20 17:47:18.986 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/paper/PaperQuAnswerMapper.xml]' -2024-09-20 17:47:18.991 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.insert -2024-09-20 17:47:18.991 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.delete -2024-09-20 17:47:18.992 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.deleteByMap -2024-09-20 17:47:18.993 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.deleteById -2024-09-20 17:47:18.994 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.deleteBatchIds -2024-09-20 17:47:18.995 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.update -2024-09-20 17:47:18.996 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.updateById -2024-09-20 17:47:18.996 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectById -2024-09-20 17:47:18.997 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectBatchIds -2024-09-20 17:47:18.999 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectByMap -2024-09-20 17:47:18.999 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectOne -2024-09-20 17:47:19.000 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectCount -2024-09-20 17:47:19.001 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectMaps -2024-09-20 17:47:19.003 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectMapsPage -2024-09-20 17:47:19.004 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectObjs -2024-09-20 17:47:19.009 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectList -2024-09-20 17:47:19.011 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserRoleMapper.selectPage -2024-09-20 17:47:19.012 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/sys/user/SysUserRoleMapper.xml]' -2024-09-20 17:47:19.026 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.paging -2024-09-20 17:47:19.031 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.insert -2024-09-20 17:47:19.035 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.delete -2024-09-20 17:47:19.036 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.deleteByMap -2024-09-20 17:47:19.045 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.deleteById -2024-09-20 17:47:19.046 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.deleteBatchIds -2024-09-20 17:47:19.047 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.update -2024-09-20 17:47:19.048 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.updateById -2024-09-20 17:47:19.048 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectById -2024-09-20 17:47:19.049 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectBatchIds -2024-09-20 17:47:19.050 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectByMap -2024-09-20 17:47:19.050 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectOne -2024-09-20 17:47:19.052 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectCount -2024-09-20 17:47:19.053 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectMaps -2024-09-20 17:47:19.054 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectMapsPage -2024-09-20 17:47:19.056 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectObjs -2024-09-20 17:47:19.057 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectList -2024-09-20 17:47:19.058 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.paper.mapper.PaperMapper.selectPage -2024-09-20 17:47:19.058 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/paper/PaperMapper.xml]' -2024-09-20 17:47:19.065 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.paging -2024-09-20 17:47:19.067 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.insert -2024-09-20 17:47:19.069 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.delete -2024-09-20 17:47:19.070 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.deleteByMap -2024-09-20 17:47:19.070 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.deleteById -2024-09-20 17:47:19.071 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.deleteBatchIds -2024-09-20 17:47:19.073 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.update -2024-09-20 17:47:19.073 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.updateById -2024-09-20 17:47:19.073 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectById -2024-09-20 17:47:19.074 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectBatchIds -2024-09-20 17:47:19.074 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectByMap -2024-09-20 17:47:19.075 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectOne -2024-09-20 17:47:19.075 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectCount -2024-09-20 17:47:19.077 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectMaps -2024-09-20 17:47:19.078 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectMapsPage -2024-09-20 17:47:19.078 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectObjs -2024-09-20 17:47:19.079 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectList -2024-09-20 17:47:19.079 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.exam.mapper.UserExamMapper.selectPage -2024-09-20 17:47:19.079 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/user/UserExamMapper.xml]' -2024-09-20 17:47:19.086 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.paging -2024-09-20 17:47:19.086 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.reviewPaging -2024-09-20 17:47:19.087 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.online -2024-09-20 17:47:19.089 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.insert -2024-09-20 17:47:19.091 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.delete -2024-09-20 17:47:19.092 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.deleteByMap -2024-09-20 17:47:19.093 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.deleteById -2024-09-20 17:47:19.094 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.deleteBatchIds -2024-09-20 17:47:19.095 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.update -2024-09-20 17:47:19.097 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.updateById -2024-09-20 17:47:19.098 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectById -2024-09-20 17:47:19.099 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectBatchIds -2024-09-20 17:47:19.099 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectByMap -2024-09-20 17:47:19.100 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectOne -2024-09-20 17:47:19.100 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectCount -2024-09-20 17:47:19.101 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectMaps -2024-09-20 17:47:19.104 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectMapsPage -2024-09-20 17:47:19.105 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectObjs -2024-09-20 17:47:19.108 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectList -2024-09-20 17:47:19.108 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamMapper.selectPage -2024-09-20 17:47:19.110 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/exam/ExamMapper.xml]' -2024-09-20 17:47:19.123 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.insert -2024-09-20 17:47:19.125 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.delete -2024-09-20 17:47:19.127 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.deleteByMap -2024-09-20 17:47:19.128 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.deleteById -2024-09-20 17:47:19.129 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.deleteBatchIds -2024-09-20 17:47:19.130 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.update -2024-09-20 17:47:19.132 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.updateById -2024-09-20 17:47:19.132 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectById -2024-09-20 17:47:19.133 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectBatchIds -2024-09-20 17:47:19.134 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectByMap -2024-09-20 17:47:19.136 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectOne -2024-09-20 17:47:19.138 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectCount -2024-09-20 17:47:19.139 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectMaps -2024-09-20 17:47:19.140 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectMapsPage -2024-09-20 17:47:19.142 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectObjs -2024-09-20 17:47:19.142 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectList -2024-09-20 17:47:19.145 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.user.book.mapper.UserBookMapper.selectPage -2024-09-20 17:47:19.145 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/user/UserBookMapper.xml]' -2024-09-20 17:47:19.157 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.insert -2024-09-20 17:47:19.160 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.delete -2024-09-20 17:47:19.163 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.deleteByMap -2024-09-20 17:47:19.165 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.deleteById -2024-09-20 17:47:19.167 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.deleteBatchIds -2024-09-20 17:47:19.170 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.update -2024-09-20 17:47:19.173 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.updateById -2024-09-20 17:47:19.173 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectById -2024-09-20 17:47:19.176 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectBatchIds -2024-09-20 17:47:19.179 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectByMap -2024-09-20 17:47:19.180 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectOne -2024-09-20 17:47:19.182 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectCount -2024-09-20 17:47:19.183 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectMaps -2024-09-20 17:47:19.184 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectMapsPage -2024-09-20 17:47:19.186 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectObjs -2024-09-20 17:47:19.187 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectList -2024-09-20 17:47:19.189 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuAnswerMapper.selectPage -2024-09-20 17:47:19.189 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/qu/QuAnswerMapper.xml]' -2024-09-20 17:47:19.200 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.insert -2024-09-20 17:47:19.203 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.delete -2024-09-20 17:47:19.204 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.deleteByMap -2024-09-20 17:47:19.205 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.deleteById -2024-09-20 17:47:19.207 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.deleteBatchIds -2024-09-20 17:47:19.210 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.update -2024-09-20 17:47:19.212 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.updateById -2024-09-20 17:47:19.212 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectById -2024-09-20 17:47:19.213 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectBatchIds -2024-09-20 17:47:19.214 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectByMap -2024-09-20 17:47:19.217 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectOne -2024-09-20 17:47:19.218 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectCount -2024-09-20 17:47:19.219 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectMaps -2024-09-20 17:47:19.220 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectMapsPage -2024-09-20 17:47:19.221 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectObjs -2024-09-20 17:47:19.221 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectList -2024-09-20 17:47:19.222 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.exam.mapper.ExamDepartMapper.selectPage -2024-09-20 17:47:19.222 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/exam/ExamDepartMapper.xml]' -2024-09-20 17:47:19.228 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.listByRandom -2024-09-20 17:47:19.228 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectRepos -2024-09-20 17:47:19.230 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.paging -2024-09-20 17:47:19.230 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.listForExport -2024-09-20 17:47:19.234 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.insert -2024-09-20 17:47:19.236 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.delete -2024-09-20 17:47:19.238 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.deleteByMap -2024-09-20 17:47:19.239 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.deleteById -2024-09-20 17:47:19.240 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.deleteBatchIds -2024-09-20 17:47:19.242 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.update -2024-09-20 17:47:19.245 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.updateById -2024-09-20 17:47:19.246 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectById -2024-09-20 17:47:19.248 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectBatchIds -2024-09-20 17:47:19.250 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectByMap -2024-09-20 17:47:19.254 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectOne -2024-09-20 17:47:19.255 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectCount -2024-09-20 17:47:19.257 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectMaps -2024-09-20 17:47:19.258 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectMapsPage -2024-09-20 17:47:19.259 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectObjs -2024-09-20 17:47:19.261 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectList -2024-09-20 17:47:19.263 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuMapper.selectPage -2024-09-20 17:47:19.264 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/qu/QuMapper.xml]' -2024-09-20 17:47:19.273 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.paging -2024-09-20 17:47:19.279 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.insert -2024-09-20 17:47:19.280 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.delete -2024-09-20 17:47:19.282 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.deleteByMap -2024-09-20 17:47:19.284 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.deleteById -2024-09-20 17:47:19.286 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.deleteBatchIds -2024-09-20 17:47:19.289 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.update -2024-09-20 17:47:19.291 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.updateById -2024-09-20 17:47:19.291 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectById -2024-09-20 17:47:19.293 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectBatchIds -2024-09-20 17:47:19.294 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectByMap -2024-09-20 17:47:19.295 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectOne -2024-09-20 17:47:19.297 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectCount -2024-09-20 17:47:19.298 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectMaps -2024-09-20 17:47:19.301 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectMapsPage -2024-09-20 17:47:19.303 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectObjs -2024-09-20 17:47:19.305 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectList -2024-09-20 17:47:19.307 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.repo.mapper.RepoMapper.selectPage -2024-09-20 17:47:19.307 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/repo/RepoMapper.xml]' -2024-09-20 17:47:19.313 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.insert -2024-09-20 17:47:19.314 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.delete -2024-09-20 17:47:19.316 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.deleteByMap -2024-09-20 17:47:19.318 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.deleteById -2024-09-20 17:47:19.319 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.deleteBatchIds -2024-09-20 17:47:19.321 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.update -2024-09-20 17:47:19.322 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.updateById -2024-09-20 17:47:19.323 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectById -2024-09-20 17:47:19.324 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectBatchIds -2024-09-20 17:47:19.325 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectByMap -2024-09-20 17:47:19.328 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectOne -2024-09-20 17:47:19.330 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectCount -2024-09-20 17:47:19.332 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectMaps -2024-09-20 17:47:19.333 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectMapsPage -2024-09-20 17:47:19.335 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectObjs -2024-09-20 17:47:19.337 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectList -2024-09-20 17:47:19.339 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.qu.mapper.QuRepoMapper.selectPage -2024-09-20 17:47:19.339 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/qu/QuRepoMapper.xml]' -2024-09-20 17:47:19.345 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.findChildren -2024-09-20 17:47:19.347 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.paging -2024-09-20 17:47:19.349 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.insert -2024-09-20 17:47:19.350 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.delete -2024-09-20 17:47:19.351 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.deleteByMap -2024-09-20 17:47:19.353 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.deleteById -2024-09-20 17:47:19.354 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.deleteBatchIds -2024-09-20 17:47:19.355 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.update -2024-09-20 17:47:19.356 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.updateById -2024-09-20 17:47:19.357 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectById -2024-09-20 17:47:19.358 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectBatchIds -2024-09-20 17:47:19.359 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectByMap -2024-09-20 17:47:19.360 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectOne -2024-09-20 17:47:19.361 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectCount -2024-09-20 17:47:19.363 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectMaps -2024-09-20 17:47:19.364 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectMapsPage -2024-09-20 17:47:19.367 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectObjs -2024-09-20 17:47:19.368 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectList -2024-09-20 17:47:19.370 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.depart.mapper.SysDepartMapper.selectPage -2024-09-20 17:47:19.371 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/sys/depart/SysDepartMapper.xml]' -2024-09-20 17:47:19.379 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.insert -2024-09-20 17:47:19.380 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.delete -2024-09-20 17:47:19.382 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.deleteByMap -2024-09-20 17:47:19.383 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.deleteById -2024-09-20 17:47:19.385 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.deleteBatchIds -2024-09-20 17:47:19.388 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.update -2024-09-20 17:47:19.389 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.updateById -2024-09-20 17:47:19.389 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectById -2024-09-20 17:47:19.390 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectBatchIds -2024-09-20 17:47:19.392 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectByMap -2024-09-20 17:47:19.394 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectOne -2024-09-20 17:47:19.396 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectCount -2024-09-20 17:47:19.398 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectMaps -2024-09-20 17:47:19.401 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectMapsPage -2024-09-20 17:47:19.402 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectObjs -2024-09-20 17:47:19.404 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectList -2024-09-20 17:47:19.406 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.user.mapper.SysUserMapper.selectPage -2024-09-20 17:47:19.406 DEBUG 22604 --- [main] c.b.m.e.s.MybatisSqlSessionFactoryBean : Parsed mapper file: 'URL [jar:file:/S:/yfexam-exam-main/docs/а/exam-api.jar!/BOOT-INF/classes!/mapper/sys/user/SysUserMapper.xml]' -2024-09-20 17:47:20.480 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sqlSessionTemplate' -2024-09-20 17:47:20.480 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'sqlSessionTemplate' via factory method to bean named 'sqlSessionFactory' -2024-09-20 17:47:20.497 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quServiceImpl' -2024-09-20 17:47:20.500 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quMapper' -2024-09-20 17:47:20.511 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quAnswerServiceImpl' -2024-09-20 17:47:20.513 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quAnswerMapper' -2024-09-20 17:47:20.580 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quRepoServiceImpl' -2024-09-20 17:47:20.584 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quRepoMapper' -2024-09-20 17:47:20.590 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'repoServiceImpl' -2024-09-20 17:47:20.593 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'repoMapper' -2024-09-20 17:47:20.712 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'userExamController' -2024-09-20 17:47:20.717 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'userExamServiceImpl' -2024-09-20 17:47:20.719 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'userExamMapper' -2024-09-20 17:47:20.779 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysDepartController' -2024-09-20 17:47:20.784 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysDepartServiceImpl' -2024-09-20 17:47:20.785 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysDepartMapper' -2024-09-20 17:47:20.818 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysConfigServiceImpl' -2024-09-20 17:47:20.821 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysConfigMapper' -2024-09-20 17:47:20.824 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.insert -2024-09-20 17:47:20.825 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.delete -2024-09-20 17:47:20.826 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.deleteByMap -2024-09-20 17:47:20.827 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.deleteById -2024-09-20 17:47:20.829 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.deleteBatchIds -2024-09-20 17:47:20.830 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.update -2024-09-20 17:47:20.831 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.updateById -2024-09-20 17:47:20.831 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectById -2024-09-20 17:47:20.832 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectBatchIds -2024-09-20 17:47:20.833 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectByMap -2024-09-20 17:47:20.834 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectOne -2024-09-20 17:47:20.836 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectCount -2024-09-20 17:47:20.837 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectMaps -2024-09-20 17:47:20.839 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectMapsPage -2024-09-20 17:47:20.840 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectObjs -2024-09-20 17:47:20.841 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectList -2024-09-20 17:47:20.842 DEBUG 22604 --- [main] c.b.m.core.MybatisConfiguration : addMappedStatement: com.yf.exam.modules.sys.config.mapper.SysConfigMapper.selectPage -2024-09-20 17:47:20.866 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysUserController' -2024-09-20 17:47:20.870 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysUserServiceImpl' -2024-09-20 17:47:20.872 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysUserMapper' -2024-09-20 17:47:20.880 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysUserRoleServiceImpl' -2024-09-20 17:47:20.884 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysUserRoleMapper' -2024-09-20 17:47:20.946 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysRoleServiceImpl' -2024-09-20 17:47:20.948 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysRoleMapper' -2024-09-20 17:47:20.974 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examController' -2024-09-20 17:47:20.980 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examServiceImpl' -2024-09-20 17:47:20.982 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examMapper' -2024-09-20 17:47:20.988 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examRepoServiceImpl' -2024-09-20 17:47:20.988 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examRepoMapper' -2024-09-20 17:47:21.005 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examDepartServiceImpl' -2024-09-20 17:47:21.006 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examDepartMapper' -2024-09-20 17:47:21.054 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'repoController' -2024-09-20 17:47:21.065 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dictAspect' -2024-09-20 17:47:21.067 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysDictServiceImpl' -2024-09-20 17:47:21.069 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysDictMapper' -2024-09-20 17:47:21.074 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'springUtils' -2024-09-20 17:47:21.075 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerConfig' -2024-09-20 17:47:21.080 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jobServiceImpl' -2024-09-20 17:47:21.084 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quartzDataSourceInitializer' -2024-09-20 17:47:21.084 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration$JdbcStoreTypeConfiguration' -2024-09-20 17:47:21.089 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.quartz-org.springframework.boot.autoconfigure.quartz.QuartzProperties' -2024-09-20 17:47:21.102 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'quartzDataSourceInitializer' via factory method to bean named 'dataSource' -2024-09-20 17:47:21.102 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'quartzDataSourceInitializer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd' -2024-09-20 17:47:21.102 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'quartzDataSourceInitializer' via factory method to bean named 'spring.quartz-org.springframework.boot.autoconfigure.quartz.QuartzProperties' -2024-09-20 17:47:21.118 DEBUG 22604 --- [main] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:21.128 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quartzScheduler' -2024-09-20 17:47:21.128 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration' -2024-09-20 17:47:21.128 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration$$EnhancerBySpringCGLIB$$b1304873] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.131 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration' via constructor to bean named 'spring.quartz-org.springframework.boot.autoconfigure.quartz.QuartzProperties' -2024-09-20 17:47:21.131 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd' -2024-09-20 17:47:21.142 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dataSourceCustomizer' -2024-09-20 17:47:21.142 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dataSourceCustomizer' via factory method to bean named 'spring.quartz-org.springframework.boot.autoconfigure.quartz.QuartzProperties' -2024-09-20 17:47:21.142 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dataSourceCustomizer' via factory method to bean named 'dataSource' -2024-09-20 17:47:21.147 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'transactionManager' -2024-09-20 17:47:21.147 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration' -2024-09-20 17:47:21.148 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration$$EnhancerBySpringCGLIB$$7d709c98] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.148 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration' via constructor to bean named 'dataSource' -2024-09-20 17:47:21.149 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-09-20 17:47:21.149 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-09-20 17:47:21.157 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-09-20 17:47:21.166 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'transactionManager' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-09-20 17:47:21.203 INFO 22604 --- [main] org.quartz.impl.StdSchedulerFactory : Using default implementation for ThreadExecutor -2024-09-20 17:47:21.205 INFO 22604 --- [main] org.quartz.simpl.SimpleThreadPool : Job execution threads will use class loader of thread: main -2024-09-20 17:47:21.212 INFO 22604 --- [main] org.quartz.core.SchedulerSignalerImpl : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2024-09-20 17:47:21.212 INFO 22604 --- [main] org.quartz.core.QuartzScheduler : Quartz Scheduler v.2.3.1 created. -2024-09-20 17:47:21.215 DEBUG 22604 --- [main] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:21.217 INFO 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : Using db table-based data access locking (synchronization). -2024-09-20 17:47:21.218 INFO 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : JobStoreCMT initialized. -2024-09-20 17:47:21.220 INFO 22604 --- [main] org.quartz.core.QuartzScheduler : Scheduler meta-data: Quartz Scheduler (v2.3.1) 'examScheduler' with instanceId 'lang1726825641205' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. - -2024-09-20 17:47:21.220 INFO 22604 --- [main] org.quartz.impl.StdSchedulerFactory : Quartz scheduler 'examScheduler' initialized from an externally provided properties instance. -2024-09-20 17:47:21.220 INFO 22604 --- [main] org.quartz.impl.StdSchedulerFactory : Quartz scheduler version: 2.3.1 -2024-09-20 17:47:21.220 INFO 22604 --- [main] org.quartz.core.QuartzScheduler : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@77b919a3 -2024-09-20 17:47:21.221 DEBUG 22604 --- [main] o.s.j.d.DataSourceTransactionManager : Creating new transaction with name [null]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-09-20 17:47:21.221 DEBUG 22604 --- [main] o.s.j.d.DataSourceTransactionManager : Acquired Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@712cfb63] for JDBC transaction -2024-09-20 17:47:21.223 DEBUG 22604 --- [main] o.s.j.d.DataSourceTransactionManager : Switching JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@712cfb63] to manual commit -2024-09-20 17:47:21.224 DEBUG 22604 --- [main] o.s.j.d.DataSourceTransactionManager : Initiating transaction commit -2024-09-20 17:47:21.224 DEBUG 22604 --- [main] o.s.j.d.DataSourceTransactionManager : Committing JDBC transaction on Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@712cfb63] -2024-09-20 17:47:21.226 DEBUG 22604 --- [main] o.s.j.d.DataSourceTransactionManager : Releasing JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@712cfb63] after transaction -2024-09-20 17:47:21.234 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jobServiceImpl' via constructor to bean named '&quartzScheduler' -2024-09-20 17:47:21.235 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'breakExamJob' -2024-09-20 17:47:21.239 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'paperServiceImpl' -2024-09-20 17:47:21.240 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'paperMapper' -2024-09-20 17:47:21.265 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'paperQuServiceImpl' -2024-09-20 17:47:21.269 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'paperQuMapper' -2024-09-20 17:47:21.291 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'paperQuAnswerServiceImpl' -2024-09-20 17:47:21.293 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'paperQuAnswerMapper' -2024-09-20 17:47:21.318 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'userBookController' -2024-09-20 17:47:21.326 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'quController' -2024-09-20 17:47:21.340 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysConfigController' -2024-09-20 17:47:21.348 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sysRoleController' -2024-09-20 17:47:21.355 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'uploadServiceImpl' -2024-09-20 17:47:21.357 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'uploadConfig' -2024-09-20 17:47:21.359 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'injectUtils' -2024-09-20 17:47:21.359 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'paperController' -2024-09-20 17:47:21.365 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'serviceExceptionHandler' -2024-09-20 17:47:21.370 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'uploadController' -2024-09-20 17:47:21.375 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'serviceModelToSwagger2MapperImpl' -2024-09-20 17:47:21.385 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'modelMapperImpl' -2024-09-20 17:47:21.389 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterMapperImpl' -2024-09-20 17:47:21.391 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'securityMapperImpl' -2024-09-20 17:47:21.401 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'licenseMapperImpl' -2024-09-20 17:47:21.404 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'vendorExtensionsMapperImpl' -2024-09-20 17:47:21.405 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiListingReferenceScanner' -2024-09-20 17:47:21.406 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiDocumentationScanner' -2024-09-20 17:47:21.410 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiListingScanner' -2024-09-20 17:47:21.412 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiDescriptionReader' -2024-09-20 17:47:21.419 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'cachingOperationReader' -2024-09-20 17:47:21.421 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiOperationReader' -2024-09-20 17:47:21.422 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'documentationPluginsManager' -2024-09-20 17:47:21.427 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'documentationPluginRegistry' -2024-09-20 17:47:21.446 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiListingBuilderPluginRegistry' -2024-09-20 17:47:21.449 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterBuilderPluginRegistry' -2024-09-20 17:47:21.453 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'expandedParameterBuilderPluginRegistry' -2024-09-20 17:47:21.456 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationBuilderPluginRegistry' -2024-09-20 17:47:21.458 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'resourceGroupingStrategyRegistry' -2024-09-20 17:47:21.459 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationModelsProviderPluginRegistry' -2024-09-20 17:47:21.460 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultsProviderPluginRegistry' -2024-09-20 17:47:21.461 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'pathDecoratorRegistry' -2024-09-20 17:47:21.462 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiListingScannerPluginRegistry' -2024-09-20 17:47:21.464 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'cachingOperationNameGenerator' -2024-09-20 17:47:21.470 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiOperationReader' via constructor to bean named 'documentationPluginsManager' -2024-09-20 17:47:21.470 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiOperationReader' via constructor to bean named 'cachingOperationNameGenerator' -2024-09-20 17:47:21.471 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'cachingOperationReader' via constructor to bean named 'apiOperationReader' -2024-09-20 17:47:21.490 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiDescriptionLookup' -2024-09-20 17:47:21.493 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiDescriptionReader' via constructor to bean named 'cachingOperationReader' -2024-09-20 17:47:21.493 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiDescriptionReader' via constructor to bean named 'documentationPluginsManager' -2024-09-20 17:47:21.493 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiDescriptionReader' via constructor to bean named 'apiDescriptionLookup' -2024-09-20 17:47:21.494 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiModelReader' -2024-09-20 17:47:21.496 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'cachingModelProvider' -2024-09-20 17:47:21.496 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultModelProvider' -2024-09-20 17:47:21.498 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'typeResolver' -2024-09-20 17:47:21.498 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'springfox.documentation.schema.configuration.ModelsConfiguration' -2024-09-20 17:47:21.504 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'cachingModelPropertiesProvider' -2024-09-20 17:47:21.505 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'optimized' -2024-09-20 17:47:21.508 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'accessorsProvider' -2024-09-20 17:47:21.510 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'accessorsProvider' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.512 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'fieldProvider' -2024-09-20 17:47:21.513 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'fieldProvider' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.515 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'factoryMethodProvider' -2024-09-20 17:47:21.516 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'factoryMethodProvider' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.519 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'objectMapperBeanPropertyNamingStrategy' -2024-09-20 17:47:21.521 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'schemaPluginsManager' -2024-09-20 17:47:21.522 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'modelPropertyBuilderPluginRegistry' -2024-09-20 17:47:21.526 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'modelBuilderPluginRegistry' -2024-09-20 17:47:21.529 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'syntheticModelProviderPluginRegistry' -2024-09-20 17:47:21.530 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'schemaPluginsManager' via constructor to bean named 'modelPropertyBuilderPluginRegistry' -2024-09-20 17:47:21.531 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'schemaPluginsManager' via constructor to bean named 'modelBuilderPluginRegistry' -2024-09-20 17:47:21.531 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'schemaPluginsManager' via constructor to bean named 'syntheticModelProviderPluginRegistry' -2024-09-20 17:47:21.534 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'typeNameExtractor' -2024-09-20 17:47:21.537 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'typeNameProviderPluginRegistry' -2024-09-20 17:47:21.542 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.543 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'typeNameExtractor' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.543 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'typeNameExtractor' via constructor to bean named 'typeNameProviderPluginRegistry' -2024-09-20 17:47:21.544 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'typeNameExtractor' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.546 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'optimized' via constructor to bean named 'accessorsProvider' -2024-09-20 17:47:21.546 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'optimized' via constructor to bean named 'fieldProvider' -2024-09-20 17:47:21.546 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'optimized' via constructor to bean named 'factoryMethodProvider' -2024-09-20 17:47:21.546 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'optimized' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.547 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'optimized' via constructor to bean named 'objectMapperBeanPropertyNamingStrategy' -2024-09-20 17:47:21.547 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'optimized' via constructor to bean named 'schemaPluginsManager' -2024-09-20 17:47:21.547 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'optimized' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.551 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'cachingModelPropertiesProvider' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.551 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'cachingModelPropertiesProvider' via constructor to bean named 'optimized' -2024-09-20 17:47:21.554 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'cachingModelDependencyProvider' -2024-09-20 17:47:21.555 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultModelDependencyProvider' -2024-09-20 17:47:21.558 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelDependencyProvider' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.558 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelDependencyProvider' via constructor to bean named 'cachingModelPropertiesProvider' -2024-09-20 17:47:21.558 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelDependencyProvider' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.558 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelDependencyProvider' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.558 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelDependencyProvider' via constructor to bean named 'schemaPluginsManager' -2024-09-20 17:47:21.560 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'cachingModelDependencyProvider' via constructor to bean named 'defaultModelDependencyProvider' -2024-09-20 17:47:21.561 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelProvider' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.561 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelProvider' via constructor to bean named 'cachingModelPropertiesProvider' -2024-09-20 17:47:21.561 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelProvider' via constructor to bean named 'cachingModelDependencyProvider' -2024-09-20 17:47:21.562 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelProvider' via constructor to bean named 'schemaPluginsManager' -2024-09-20 17:47:21.562 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelProvider' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.562 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'defaultModelProvider' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.563 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'cachingModelProvider' via constructor to bean named 'defaultModelProvider' -2024-09-20 17:47:21.564 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiModelReader' via constructor to bean named 'cachingModelProvider' -2024-09-20 17:47:21.564 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiModelReader' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.564 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiModelReader' via constructor to bean named 'documentationPluginsManager' -2024-09-20 17:47:21.565 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiListingScanner' via constructor to bean named 'apiDescriptionReader' -2024-09-20 17:47:21.565 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiListingScanner' via constructor to bean named 'apiModelReader' -2024-09-20 17:47:21.565 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiListingScanner' via constructor to bean named 'documentationPluginsManager' -2024-09-20 17:47:21.566 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiDocumentationScanner' via constructor to bean named 'apiListingReferenceScanner' -2024-09-20 17:47:21.566 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiDocumentationScanner' via constructor to bean named 'apiListingScanner' -2024-09-20 17:47:21.567 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiListingReader' -2024-09-20 17:47:21.569 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mediaTypeReader' -2024-09-20 17:47:21.572 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationModelsProvider' -2024-09-20 17:47:21.573 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationModelsProvider' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.575 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationDeprecatedReader' -2024-09-20 17:47:21.576 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'responseMessagesReader' -2024-09-20 17:47:21.577 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'responseMessagesReader' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.578 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationParameterReader' -2024-09-20 17:47:21.581 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'modelAttributeParameterExpander' -2024-09-20 17:47:21.583 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'modelAttributeParameterExpander' via constructor to bean named 'fieldProvider' -2024-09-20 17:47:21.583 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'modelAttributeParameterExpander' via constructor to bean named 'accessorsProvider' -2024-09-20 17:47:21.583 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'modelAttributeParameterExpander' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.584 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationParameterReader' via constructor to bean named 'modelAttributeParameterExpander' -2024-09-20 17:47:21.584 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationParameterReader' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.585 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultTagsProvider' -2024-09-20 17:47:21.587 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationTagsReader' -2024-09-20 17:47:21.588 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationTagsReader' via constructor to bean named 'defaultTagsProvider' -2024-09-20 17:47:21.589 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultOperationReader' -2024-09-20 17:47:21.590 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationParameterRequestConditionReader' -2024-09-20 17:47:21.591 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationParameterRequestConditionReader' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.592 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationParameterHeadersConditionReader' -2024-09-20 17:47:21.592 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationParameterHeadersConditionReader' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.594 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationResponseClassReader' -2024-09-20 17:47:21.595 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationResponseClassReader' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.597 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterMultiplesReader' -2024-09-20 17:47:21.598 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterTypeReader' -2024-09-20 17:47:21.600 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterRequiredReader' -2024-09-20 17:47:21.603 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'descriptionResolver' -2024-09-20 17:47:21.604 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'springfox.documentation.spring.web.SpringfoxWebMvcConfiguration' -2024-09-20 17:47:21.608 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'descriptionResolver' via factory method to bean named 'environment' -2024-09-20 17:47:21.612 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'parameterRequiredReader' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.613 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterDataTypeReader' -2024-09-20 17:47:21.613 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'parameterDataTypeReader' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.613 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'parameterDataTypeReader' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.614 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'parameterDataTypeReader' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.615 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterDefaultReader' -2024-09-20 17:47:21.615 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'parameterDefaultReader' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.616 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterNameReader' -2024-09-20 17:47:21.617 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'expandedParameterBuilder' -2024-09-20 17:47:21.618 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'expandedParameterBuilder' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.618 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'expandedParameterBuilder' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.620 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'documentationPluginsBootstrapper' -2024-09-20 17:47:21.623 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'webMvcRequestHandlerProvider' -2024-09-20 17:47:21.625 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'methodResolver' -2024-09-20 17:47:21.626 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'methodResolver' via factory method to bean named 'typeResolver' -2024-09-20 17:47:21.631 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-09-20 17:47:21.631 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-09-20 17:47:21.631 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration$$EnhancerBySpringCGLIB$$3b5d54a9] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.634 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@3059cbc' -2024-09-20 17:47:21.643 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-09-20 17:47:21.644 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$$EnhancerBySpringCGLIB$$dd611f8e] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.646 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' -2024-09-20 17:47:21.646 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-09-20 17:47:21.646 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@3059cbc' -2024-09-20 17:47:21.667 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcConversionService' -2024-09-20 17:47:21.673 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-09-20 17:47:21.676 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-09-20 17:47:21.708 DEBUG 22604 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : 65 mappings in 'requestMappingHandlerMapping' -2024-09-20 17:47:21.728 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'webMvcRequestHandlerProvider' via constructor to bean named 'methodResolver' -2024-09-20 17:47:21.728 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'webMvcRequestHandlerProvider' via constructor to bean named 'requestMappingHandlerMapping' -2024-09-20 17:47:21.732 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'resourceGroupCache' -2024-09-20 17:47:21.735 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaults' -2024-09-20 17:47:21.758 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'documentationPluginsBootstrapper' via constructor to bean named 'documentationPluginsManager' -2024-09-20 17:47:21.758 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'documentationPluginsBootstrapper' via constructor to bean named 'webMvcRequestHandlerProvider' -2024-09-20 17:47:21.758 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'documentationPluginsBootstrapper' via constructor to bean named 'resourceGroupCache' -2024-09-20 17:47:21.758 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'documentationPluginsBootstrapper' via constructor to bean named 'apiDocumentationScanner' -2024-09-20 17:47:21.758 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'documentationPluginsBootstrapper' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.758 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'documentationPluginsBootstrapper' via constructor to bean named 'defaults' -2024-09-20 17:47:21.759 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'documentationPluginsBootstrapper' via constructor to bean named 'servletContext' -2024-09-20 17:47:21.759 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'documentationPluginsBootstrapper' via constructor to bean named 'environment' -2024-09-20 17:47:21.763 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'queryStringUriTemplateDecorator' -2024-09-20 17:47:21.764 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'pathMappingDecorator' -2024-09-20 17:47:21.764 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'pathSanitizer' -2024-09-20 17:47:21.766 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationPathDecorator' -2024-09-20 17:47:21.766 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'propertyDiscriminatorBasedInheritancePlugin' -2024-09-20 17:47:21.767 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'propertyDiscriminatorBasedInheritancePlugin' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.767 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'propertyDiscriminatorBasedInheritancePlugin' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.768 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiModelPropertyPropertyBuilder' -2024-09-20 17:47:21.768 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiModelPropertyPropertyBuilder' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.769 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiModelTypeNameProvider' -2024-09-20 17:47:21.770 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiModelBuilder' -2024-09-20 17:47:21.771 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiModelBuilder' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.771 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiModelBuilder' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.772 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationImplicitParameterReader' -2024-09-20 17:47:21.776 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationImplicitParameterReader' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.777 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'vendorExtensionsReader' -2024-09-20 17:47:21.778 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerOperationResponseClassReader' -2024-09-20 17:47:21.780 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerOperationResponseClassReader' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.780 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerOperationResponseClassReader' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.781 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerOperationModelsProvider' -2024-09-20 17:47:21.783 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerOperationModelsProvider' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.784 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerMediaTypeReader' -2024-09-20 17:47:21.786 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationHttpMethodReader' -2024-09-20 17:47:21.788 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationImplicitParametersReader' -2024-09-20 17:47:21.789 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationImplicitParametersReader' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.789 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationAuthReader' -2024-09-20 17:47:21.790 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationHiddenReader' -2024-09-20 17:47:21.791 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationSummaryReader' -2024-09-20 17:47:21.792 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationSummaryReader' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.793 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerResponseMessageReader' -2024-09-20 17:47:21.796 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerResponseMessageReader' via constructor to bean named 'typeNameExtractor' -2024-09-20 17:47:21.796 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerResponseMessageReader' via constructor to bean named 'typeResolver' -2024-09-20 17:47:21.797 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationNicknameIntoUniqueIdReader' -2024-09-20 17:47:21.798 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationPositionReader' -2024-09-20 17:47:21.800 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'operationNotesReader' -2024-09-20 17:47:21.801 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'operationNotesReader' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.802 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerOperationTagsReader' -2024-09-20 17:47:21.803 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerOperationTagsReader' via constructor to bean named 'defaultTagsProvider' -2024-09-20 17:47:21.804 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerParameterDescriptionReader' -2024-09-20 17:47:21.804 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerParameterDescriptionReader' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.805 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerParameterDescriptionReader' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.805 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerExpandedParameterBuilder' -2024-09-20 17:47:21.807 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerExpandedParameterBuilder' via constructor to bean named 'descriptionResolver' -2024-09-20 17:47:21.807 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerExpandedParameterBuilder' via constructor to bean named 'jacksonEnumTypeDeterminer' -2024-09-20 17:47:21.808 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerApiListingReader' -2024-09-20 17:47:21.808 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'classOrApiAnnotationResourceGrouping' -2024-09-20 17:47:21.809 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'inMemorySwaggerResourcesProvider' -2024-09-20 17:47:21.811 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'inMemorySwaggerResourcesProvider' via constructor to bean named 'environment' -2024-09-20 17:47:21.811 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'inMemorySwaggerResourcesProvider' via constructor to bean named 'resourceGroupCache' -2024-09-20 17:47:21.815 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'apiResourceController' -2024-09-20 17:47:21.818 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'apiResourceController' via constructor to bean named 'inMemorySwaggerResourcesProvider' -2024-09-20 17:47:21.823 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swaggerBootstrapUiController' -2024-09-20 17:47:21.826 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jsonSerializer' -2024-09-20 17:47:21.828 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swagger2Module' -2024-09-20 17:47:21.828 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'springfox.documentation.swagger2.configuration.Swagger2DocumentationConfiguration' -2024-09-20 17:47:21.834 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jsonSerializer' via factory method to bean named 'swagger2Module' -2024-09-20 17:47:21.836 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerBootstrapUiController' via constructor to bean named 'environment' -2024-09-20 17:47:21.836 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerBootstrapUiController' via constructor to bean named 'serviceModelToSwagger2MapperImpl' -2024-09-20 17:47:21.837 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerBootstrapUiController' via constructor to bean named 'resourceGroupCache' -2024-09-20 17:47:21.837 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerBootstrapUiController' via constructor to bean named 'jsonSerializer' -2024-09-20 17:47:21.837 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swaggerBootstrapUiController' via constructor to bean named 'webMvcRequestHandlerProvider' -2024-09-20 17:47:21.839 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'markdownFiles' -2024-09-20 17:47:21.839 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'com.github.xiaoymin.swaggerbootstrapui.configuration.MarkdownFileConfiguration' -2024-09-20 17:47:21.846 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'taskScheduler' -2024-09-20 17:47:21.848 INFO 22604 --- [main] o.s.s.c.ThreadPoolTaskScheduler : Initializing ExecutorService 'taskScheduler' -2024-09-20 17:47:21.851 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'asyncExecutor' -2024-09-20 17:47:21.852 INFO 22604 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService -2024-09-20 17:47:21.852 INFO 22604 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'asyncExecutor' -2024-09-20 17:47:21.855 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'springfox.documentation.swagger.configuration.SwaggerCommonConfiguration' -2024-09-20 17:47:21.856 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'swagger2ControllerMapping' -2024-09-20 17:47:21.857 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swagger2ControllerMapping' via factory method to bean named 'environment' -2024-09-20 17:47:21.857 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swagger2ControllerMapping' via factory method to bean named 'resourceGroupCache' -2024-09-20 17:47:21.857 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swagger2ControllerMapping' via factory method to bean named 'serviceModelToSwagger2MapperImpl' -2024-09-20 17:47:21.857 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'swagger2ControllerMapping' via factory method to bean named 'jsonSerializer' -2024-09-20 17:47:21.861 DEBUG 22604 --- [main] pertySourcedRequestMappingHandlerMapping : initialising the handler methods -2024-09-20 17:47:21.863 INFO 22604 --- [main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)] -2024-09-20 17:47:21.866 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'com.github.xiaoymin.swaggerbootstrapui.configuration.SwaggerBootstrapUIConfiguration' -2024-09-20 17:47:21.867 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'examApi' -2024-09-20 17:47:21.874 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'securityScheme' -2024-09-20 17:47:21.881 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-09-20 17:47:21.883 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-09-20 17:47:21.884 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-09-20 17:47:21.884 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-09-20 17:47:21.886 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-09-20 17:47:21.887 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration$$EnhancerBySpringCGLIB$$5c0f9cff] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.888 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-09-20 17:47:21.891 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-09-20 17:47:21.891 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-09-20 17:47:21.897 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-09-20 17:47:21.897 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultValidator' -2024-09-20 17:47:21.902 DEBUG 22604 --- [main] o.h.v.i.e.resolver.TraversableResolvers : Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable. -2024-09-20 17:47:21.903 DEBUG 22604 --- [main] .h.v.m.ResourceBundleMessageInterpolator : Loaded expression factory via original TCCL -2024-09-20 17:47:21.905 DEBUG 22604 --- [main] o.h.v.i.e.resolver.TraversableResolvers : Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable. -2024-09-20 17:47:21.906 DEBUG 22604 --- [main] o.h.v.internal.engine.ConfigurationImpl : Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-09-20 17:47:21.906 DEBUG 22604 --- [main] o.h.v.internal.engine.ConfigurationImpl : Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-09-20 17:47:21.906 DEBUG 22604 --- [main] o.h.v.internal.engine.ConfigurationImpl : Setting custom ParameterNameProvider of type org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$1 -2024-09-20 17:47:21.907 DEBUG 22604 --- [main] o.h.v.i.xml.config.ValidationXmlParser : Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-09-20 17:47:21.907 DEBUG 22604 --- [main] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via user class loader -2024-09-20 17:47:21.907 DEBUG 22604 --- [main] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via TCCL -2024-09-20 17:47:21.908 DEBUG 22604 --- [main] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-09-20 17:47:21.908 DEBUG 22604 --- [main] o.h.v.i.xml.config.ValidationXmlParser : No META-INF/validation.xml found. Using annotation based configuration only. -2024-09-20 17:47:21.910 DEBUG 22604 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-09-20 17:47:21.910 DEBUG 22604 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-09-20 17:47:21.911 DEBUG 22604 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-09-20 17:47:21.911 DEBUG 22604 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-09-20 17:47:21.911 DEBUG 22604 --- [main] o.h.v.i.engine.ValidatorFactoryImpl : HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-09-20 17:47:21.914 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-09-20 17:47:21.915 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'error' -2024-09-20 17:47:21.918 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'beanNameViewResolver' -2024-09-20 17:47:21.918 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorAttributes' -2024-09-20 17:47:21.920 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'basicErrorController' -2024-09-20 17:47:21.920 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-09-20 17:47:21.921 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration' -2024-09-20 17:47:21.923 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration$$EnhancerBySpringCGLIB$$999e27d4] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.924 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' -2024-09-20 17:47:21.925 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'faviconHandlerMapping' -2024-09-20 17:47:21.927 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'faviconRequestHandler' -2024-09-20 17:47:21.935 DEBUG 22604 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping' -2024-09-20 17:47:21.937 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-09-20 17:47:21.945 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'messageConverters' -2024-09-20 17:47:21.945 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-09-20 17:47:21.945 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$$EnhancerBySpringCGLIB$$eaa3cfbd] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.946 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-09-20 17:47:21.946 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-09-20 17:47:21.947 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration$$EnhancerBySpringCGLIB$$1db1965d] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.947 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' via constructor to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' -2024-09-20 17:47:21.952 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-09-20 17:47:21.953 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-09-20 17:47:21.955 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-09-20 17:47:21.956 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-09-20 17:47:21.957 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonObjectMapperBuilder' -2024-09-20 17:47:21.957 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-09-20 17:47:21.958 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration$$EnhancerBySpringCGLIB$$de5045d3] - unable to determine constructor/method parameter names -2024-09-20 17:47:21.958 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd' -2024-09-20 17:47:21.959 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-09-20 17:47:21.959 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-09-20 17:47:21.960 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-09-20 17:47:21.961 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd' -2024-09-20 17:47:21.961 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-09-20 17:47:21.962 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-09-20 17:47:21.965 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'parameterNamesModule' -2024-09-20 17:47:21.965 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-09-20 17:47:21.968 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jsonComponentModule' -2024-09-20 17:47:21.968 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-09-20 17:47:21.978 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-09-20 17:47:22.010 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-09-20 17:47:22.137 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcValidator' -2024-09-20 17:47:22.151 DEBUG 22604 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 1 @ModelAttribute, 1 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-09-20 17:47:22.173 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcPathMatcher' -2024-09-20 17:47:22.175 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-09-20 17:47:22.178 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-09-20 17:47:22.179 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-09-20 17:47:22.185 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-09-20 17:47:22.191 DEBUG 22604 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping' -2024-09-20 17:47:22.191 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-09-20 17:47:22.192 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-09-20 17:47:22.194 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-09-20 17:47:22.195 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-09-20 17:47:22.197 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-09-20 17:47:22.203 DEBUG 22604 --- [main] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-09-20 17:47:22.206 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mvcViewResolver' -2024-09-20 17:47:22.211 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'defaultViewResolver' -2024-09-20 17:47:22.222 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'viewResolver' -2024-09-20 17:47:22.223 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@3059cbc' -2024-09-20 17:47:22.229 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-09-20 17:47:22.229 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6aaceffd' -2024-09-20 17:47:22.238 INFO 22604 --- [main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html] -2024-09-20 17:47:22.244 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'com.alibaba.druid.spring.boot.autoconfigure.stat.DruidFilterConfiguration' -2024-09-20 17:47:22.254 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.datasource.druid-com.alibaba.druid.spring.boot.autoconfigure.properties.DruidStatProperties' -2024-09-20 17:47:22.255 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-09-20 17:47:22.258 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-09-20 17:47:22.263 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-09-20 17:47:22.264 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializationConfiguration' -2024-09-20 17:47:22.265 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-09-20 17:47:22.265 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'com.baomidou.mybatisplus.autoconfigure.MybatisPlusLanguageDriverAutoConfiguration' -2024-09-20 17:47:22.266 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroAnnotationProcessorAutoConfiguration' -2024-09-20 17:47:22.268 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.apache.shiro.spring.web.config.ShiroRequestMappingConfig' -2024-09-20 17:47:22.268 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.apache.shiro.spring.web.config.ShiroRequestMappingConfig$$EnhancerBySpringCGLIB$$8c6bebbc] - unable to determine constructor/method parameter names -2024-09-20 17:47:22.270 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.apache.shiro.spring.web.config.ShiroRequestMappingConfig' via constructor to bean named 'requestMappingHandlerMapping' -2024-09-20 17:47:22.271 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.apache.shiro.spring.config.web.autoconfigure.ShiroWebMvcAutoConfiguration' -2024-09-20 17:47:22.272 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'authenticationStrategy' -2024-09-20 17:47:22.274 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'subjectDAO' -2024-09-20 17:47:22.274 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sessionStorageEvaluator' -2024-09-20 17:47:22.276 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'subjectFactory' -2024-09-20 17:47:22.278 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sessionFactory' -2024-09-20 17:47:22.279 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sessionDAO' -2024-09-20 17:47:22.280 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sessionCookieTemplate' -2024-09-20 17:47:22.283 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'rememberMeManager' -2024-09-20 17:47:22.283 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'rememberMeCookieTemplate' -2024-09-20 17:47:22.288 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'shiroUrlPathHelper' -2024-09-20 17:47:22.289 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroAutoConfiguration' -2024-09-20 17:47:22.293 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'globalFilters' -2024-09-20 17:47:22.311 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-09-20 17:47:22.315 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mbeanExporter' -2024-09-20 17:47:22.317 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'objectNamingStrategy' -2024-09-20 17:47:22.320 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-09-20 17:47:22.327 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'mbeanServer' -2024-09-20 17:47:22.332 DEBUG 22604 --- [main] o.springframework.jmx.support.JmxUtils : Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@4dd94a58 -2024-09-20 17:47:22.345 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$CglibAutoProxyConfiguration' -2024-09-20 17:47:22.348 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-09-20 17:47:22.348 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-09-20 17:47:22.349 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-09-20 17:47:22.350 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-09-20 17:47:22.352 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$LoggingCodecConfiguration' -2024-09-20 17:47:22.354 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'loggingCodecCustomizer' -2024-09-20 17:47:22.354 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'loggingCodecCustomizer' via factory method to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' -2024-09-20 17:47:22.358 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration' -2024-09-20 17:47:22.359 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jacksonCodecCustomizer' -2024-09-20 17:47:22.359 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jacksonCodecCustomizer' via factory method to bean named 'jacksonObjectMapper' -2024-09-20 17:47:22.364 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration' -2024-09-20 17:47:22.365 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-09-20 17:47:22.365 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration$$EnhancerBySpringCGLIB$$c6a1142] - unable to determine constructor/method parameter names -2024-09-20 17:47:22.366 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-09-20 17:47:22.369 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-09-20 17:47:22.370 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' -2024-09-20 17:47:22.371 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration$$EnhancerBySpringCGLIB$$e8fb3296] - unable to determine constructor/method parameter names -2024-09-20 17:47:22.372 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-09-20 17:47:22.375 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' via constructor to bean named 'dataSource' -2024-09-20 17:47:22.375 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' via constructor to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-09-20 17:47:22.375 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jdbcTemplate' -2024-09-20 17:47:22.398 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$NamedParameterJdbcTemplateConfiguration' -2024-09-20 17:47:22.399 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-09-20 17:47:22.400 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-09-20 17:47:22.412 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-09-20 17:47:22.414 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-09-20 17:47:22.415 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-09-20 17:47:22.416 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-09-20 17:47:22.417 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-09-20 17:47:22.421 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-09-20 17:47:22.423 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-09-20 17:47:22.424 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-09-20 17:47:22.425 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-09-20 17:47:22.426 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration$$EnhancerBySpringCGLIB$$cefa616b] - unable to determine constructor/method parameter names -2024-09-20 17:47:22.426 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' via constructor to bean named 'transactionManager' -2024-09-20 17:47:22.427 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'transactionTemplate' -2024-09-20 17:47:22.433 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-09-20 17:47:22.433 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration$$EnhancerBySpringCGLIB$$6b85fdaa] - unable to determine constructor/method parameter names -2024-09-20 17:47:22.434 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'restTemplateBuilder' -2024-09-20 17:47:22.440 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-09-20 17:47:22.440 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-09-20 17:47:22.441 DEBUG 22604 --- [main] ocalVariableTableParameterNameDiscoverer : Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration$$EnhancerBySpringCGLIB$$12b542d8] - unable to determine constructor/method parameter names -2024-09-20 17:47:22.442 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-09-20 17:47:22.445 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-09-20 17:47:22.446 DEBUG 22604 --- [main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'multipartResolver' -2024-09-20 17:47:22.463 DEBUG 22604 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup -2024-09-20 17:47:22.465 DEBUG 22604 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Autodetecting user-defined JMX MBeans -2024-09-20 17:47:22.467 DEBUG 22604 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Bean with name 'dataSource' has been autodetected for JMX exposure -2024-09-20 17:47:22.472 DEBUG 22604 --- [main] o.s.j.e.a.AnnotationMBeanExporter : Located MBean 'dataSource': registering with JMX server as MBean [com.alibaba.druid.spring.boot.autoconfigure:name=dataSource,type=DruidDataSourceWrapper] -2024-09-20 17:47:22.479 DEBUG 22604 --- [main] o.s.c.support.DefaultLifecycleProcessor : Starting beans in phase 2147483647 -2024-09-20 17:47:22.479 INFO 22604 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed -2024-09-20 17:47:22.508 INFO 22604 --- [main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s) -2024-09-20 17:47:22.532 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Total number of request handlers 65 -2024-09-20 17:47:22.532 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/common/api/file/upload], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/common/api/file/upload], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/error], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/error], supportedMethods=[], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/error], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/error], supportedMethods=[], supportedMediaTypes=[], producibleMediaTypes=[text/html]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/exam/exam/delete], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/exam/exam/delete], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/exam/exam/detail], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/exam/exam/detail], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/exam/exam/online-paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/exam/exam/online-paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/exam/exam/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/exam/exam/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/exam/exam/review-paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/exam/exam/review-paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/exam/exam/save], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/exam/exam/save], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.533 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/exam/exam/state], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/exam/exam/state], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/check-process], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/check-process], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/create-paper], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/create-paper], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/delete], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/delete], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/detail], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/detail], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/fill-answer], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/fill-answer], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/hand-exam], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/hand-exam], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/paper-detail], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/paper-detail], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/paper-result], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/paper-result], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.534 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/qu-detail], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/qu-detail], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.536 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/paper/paper/save], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/paper/paper/save], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.536 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/qu/qu/delete], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/qu/qu/delete], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.536 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/qu/qu/detail], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/qu/qu/detail], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.536 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/qu/qu/export], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/qu/qu/export], supportedMethods=[], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.536 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/qu/qu/import/template], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/qu/qu/import/template], supportedMethods=[], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.536 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/qu/qu/import], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/qu/qu/import], supportedMethods=[], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.536 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/qu/qu/list], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/qu/qu/list], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/qu/qu/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/qu/qu/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/qu/qu/save], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/qu/qu/save], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/repo/batch-action], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/repo/batch-action], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/repo/delete], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/repo/delete], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/repo/detail], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/repo/detail], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/repo/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/repo/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/repo/save], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/repo/save], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/config/detail], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/config/detail], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/config/save], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/config/save], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.537 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/depart/delete], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/depart/delete], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/depart/detail], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/depart/detail], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/depart/list], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/depart/list], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/depart/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/depart/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/depart/save], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/depart/save], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/depart/sort], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/depart/sort], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/depart/tree], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/depart/tree], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/role/list], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/role/list], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/role/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/role/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/delete], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/delete], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.538 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/info], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/info], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/login], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/login], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/logout], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/logout], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/quick-reg], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/quick-reg], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/reg], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/reg], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/save], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/save], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/state], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/state], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/sys/user/update], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/sys/user/update], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/user/exam/my-paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/user/exam/my-paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/user/exam/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/user/exam/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/user/wrong-book/delete], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/user/wrong-book/delete], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.539 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/user/wrong-book/next], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/user/wrong-book/next], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.540 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/exam/api/user/wrong-book/paging], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/exam/api/user/wrong-book/paging], supportedMethods=[POST], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.540 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/swagger-resources/configuration/security], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/swagger-resources/configuration/security], supportedMethods=[], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.540 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/swagger-resources/configuration/ui], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/swagger-resources/configuration/ui], supportedMethods=[], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.540 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/swagger-resources], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/swagger-resources], supportedMethods=[], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.540 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/upload/file/**], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/upload/file/**], supportedMethods=[GET], supportedMediaTypes=[], producibleMediaTypes=[]}} -2024-09-20 17:47:22.540 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Adding key: [/v2/api-docs-ext], WebMvcRequestHandler{key=RequestHandlerKey{pathMappings=[/v2/api-docs-ext], supportedMethods=[GET], supportedMediaTypes=[], producibleMediaTypes=[application/json, application/hal+json]}} -2024-09-20 17:47:22.561 DEBUG 22604 --- [main] s.d.s.w.p.DefaultRequestHandlerCombiner : Combined number of request handlers 65 -2024-09-20 17:47:22.562 INFO 22604 --- [main] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references -2024-09-20 17:47:22.591 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.591 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:22.592 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdsReqDTO; -2024-09-20 17:47:22.592 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |edit| -2024-09-20 17:47:22.593 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:22.635 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:22.640 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.641 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:22.641 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:22.642 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.642 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.642 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.646 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.650 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:22.651 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.651 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:22.651 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:22.651 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.651 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.651 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.651 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.653 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:22.653 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.653 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:22.653 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:22.654 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.654 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.654 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.654 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.654 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:22.654 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.655 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:22.655 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:22.655 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.655 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.655 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.655 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.663 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:22.666 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:22.667 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ -2024-09-20 17:47:22.670 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property ids -2024-09-20 17:47:22.670 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.672 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'ids' renamed to 'ids' -2024-09-20 17:47:22.675 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property ids to model -2024-09-20 17:47:22.675 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.675 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.675 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.679 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.679 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 1 properties. Properties found ids -2024-09-20 17:47:22.681 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ɾ, name: ɾ, schema: {} models -2024-09-20 17:47:22.681 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ɾ -2024-09-20 17:47:22.681 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter ids -2024-09-20 17:47:22.681 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:22.681 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:22.681 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.694 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:22.695 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method edit -2024-09-20 17:47:22.696 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:22.713 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method edit -2024-09-20 17:47:22.727 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.727 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:22.727 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdReqDTO; -2024-09-20 17:47:22.727 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |find| -2024-09-20 17:47:22.727 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:22.728 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.729 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.729 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.729 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.729 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.729 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.729 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.729 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.730 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 1 properties. Properties found id -2024-09-20 17:47:22.730 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:22.730 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨ -2024-09-20 17:47:22.731 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:22.731 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.732 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:22.732 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:22.732 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.732 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.732 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.732 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.732 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:22.733 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.733 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:22.733 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:22.733 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.733 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.733 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.733 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.733 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:22.734 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.734 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:22.734 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:22.734 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.734 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.734 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.734 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.735 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:22.735 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.735 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:22.735 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:22.735 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.735 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.735 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.735 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.736 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:22.736 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?Ա?, name: ӿӦ?Ա?, schema: {} models -2024-09-20 17:47:22.736 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?Ա? -2024-09-20 17:47:22.736 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/exam/dto/request/ExamSaveReqDTO; -2024-09-20 17:47:22.736 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/exam/dto/request/ExamSaveReqDTO; -2024-09-20 17:47:22.742 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.743 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.744 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.744 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.744 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.744 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.744 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.744 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.746 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:22.746 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.746 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:22.746 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:22.746 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.746 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.747 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.747 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.747 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:22.747 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.748 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:22.748 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:22.748 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.748 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.748 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.748 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.748 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property openType -2024-09-20 17:47:22.749 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.749 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'openType' renamed to 'openType' -2024-09-20 17:47:22.749 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property openType to model -2024-09-20 17:47:22.749 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.749 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.749 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.749 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.749 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:22.751 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.751 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:22.751 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:22.751 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.751 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.751 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.751 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.751 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property timeLimit -2024-09-20 17:47:22.752 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.752 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'timeLimit' renamed to 'timeLimit' -2024-09-20 17:47:22.752 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property timeLimit to model -2024-09-20 17:47:22.752 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.752 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.752 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.752 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.752 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property startTime -2024-09-20 17:47:22.753 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.753 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'startTime' renamed to 'startTime' -2024-09-20 17:47:22.753 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property startTime to model -2024-09-20 17:47:22.753 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.753 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.753 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.753 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.753 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property endTime -2024-09-20 17:47:22.754 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.754 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'endTime' renamed to 'endTime' -2024-09-20 17:47:22.754 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property endTime to model -2024-09-20 17:47:22.754 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.754 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.754 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.754 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.754 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:22.755 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.755 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:22.755 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:22.755 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.755 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.755 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.755 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.755 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:22.756 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.756 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:22.756 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:22.756 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.756 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.756 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.756 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.756 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:22.757 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.757 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:22.757 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:22.757 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.757 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.757 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.757 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.757 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.758 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:22.759 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:22.759 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.759 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.759 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.759 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.759 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property repoList -2024-09-20 17:47:22.759 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoList -2024-09-20 17:47:22.759 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'repoList' renamed to 'repoList' -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property repoList to model -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoList -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoList -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoList -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoList -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departIds -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartIds -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departIds' renamed to 'departIds' -2024-09-20 17:47:22.760 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departIds to model -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartIds -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartIds -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartIds -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartIds -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter departIds -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoList -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO; -2024-09-20 17:47:22.762 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO; -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.763 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property repoId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'repoId' renamed to 'repoId' -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property repoId to model -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoId -2024-09-20 17:47:22.764 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property radioCount -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'radioCount' renamed to 'radioCount' -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property radioCount to model -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property radioScore -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioScore -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'radioScore' renamed to 'radioScore' -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property radioScore to model -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioScore -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioScore -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioScore -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioScore -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property multiCount -2024-09-20 17:47:22.765 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'multiCount' renamed to 'multiCount' -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property multiCount to model -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property multiScore -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiScore -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'multiScore' renamed to 'multiScore' -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property multiScore to model -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiScore -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiScore -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiScore -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiScore -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property judgeCount -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'judgeCount' renamed to 'judgeCount' -2024-09-20 17:47:22.766 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property judgeCount to model -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property judgeScore -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeScore -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'judgeScore' renamed to 'judgeScore' -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property judgeScore to model -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeScore -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeScore -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeScore -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeScore -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalRadio -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalRadio -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalRadio' renamed to 'totalRadio' -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalRadio to model -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalRadio -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalRadio -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalRadio -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalRadio -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalMulti -2024-09-20 17:47:22.767 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalMulti -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalMulti' renamed to 'totalMulti' -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalMulti to model -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalMulti -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalMulti -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalMulti -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalMulti -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalJudge -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalJudge -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalJudge' renamed to 'totalJudge' -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalJudge to model -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalJudge -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalJudge -2024-09-20 17:47:22.768 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalJudge -2024-09-20 17:47:22.769 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalJudge -2024-09-20 17:47:22.769 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/exam/dto/request/ExamSaveReqDTO; for parameter data -2024-09-20 17:47:22.769 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/exam/dto/request/ExamSaveReqDTO; -2024-09-20 17:47:22.769 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter departIds -2024-09-20 17:47:22.770 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:22.770 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:22.770 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoList -2024-09-20 17:47:22.770 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO; -2024-09-20 17:47:22.770 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO; -2024-09-20 17:47:22.771 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 15 properties. Properties found content, createTime, departIds, endTime, id, openType, qualifyScore, repoList, startTime, state, timeLimit, title, totalScore, totalTime, updateTime -2024-09-20 17:47:22.771 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.771 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.771 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 12 properties. Properties found examId, id, judgeCount, judgeScore, multiCount, multiScore, radioCount, radioScore, repoId, totalJudge, totalMulti, totalRadio -2024-09-20 17:47:22.772 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ա -2024-09-20 17:47:22.772 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key չӦ -2024-09-20 17:47:22.773 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?Ա? -2024-09-20 17:47:22.773 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method find -2024-09-20 17:47:22.773 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?Ա? -2024-09-20 17:47:22.773 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method find -2024-09-20 17:47:22.774 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.774 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |myPaging| -2024-09-20 17:47:22.774 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:22.774 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |myPaging| -2024-09-20 17:47:22.774 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |myPaging| -2024-09-20 17:47:22.775 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:22.776 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.776 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:22.776 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:22.776 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.776 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.777 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.777 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.778 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.779 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:22.780 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?߿ԷҳӦ??, name: ӿӦ?IPage?߿ԷҳӦ??, schema: {} models -2024-09-20 17:47:22.780 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?߿ԷҳӦ?? -2024-09-20 17:47:22.780 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.780 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.780 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO; -2024-09-20 17:47:22.780 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO; -2024-09-20 17:47:22.781 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.781 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.782 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property openType -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'openType' renamed to 'openType' -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property openType to model -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.783 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property timeLimit -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'timeLimit' renamed to 'timeLimit' -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property timeLimit to model -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.784 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.786 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.786 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property startTime -2024-09-20 17:47:22.786 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.786 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'startTime' renamed to 'startTime' -2024-09-20 17:47:22.786 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property startTime to model -2024-09-20 17:47:22.786 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property endTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'endTime' renamed to 'endTime' -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property endTime to model -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.787 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.788 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.789 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:22.790 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.791 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.793 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.794 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.795 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.796 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO; -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO; -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO; -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO; -2024-09-20 17:47:22.797 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:22.798 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO; -2024-09-20 17:47:22.798 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO; -2024-09-20 17:47:22.798 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:22.799 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found content, createTime, endTime, id, openType, qualifyScore, startTime, state, timeLimit, title, totalScore, totalTime, updateTime -2024-09-20 17:47:22.799 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.799 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?߿ԷҳӦ? -2024-09-20 17:47:22.799 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ߿ԷҳӦ -2024-09-20 17:47:22.799 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:22.800 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:22.801 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:22.802 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:22.802 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:22.802 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:22.802 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:22.802 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:22.802 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:22.802 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:22.803 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:22.803 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ??, name: ҳ??, schema: {} models -2024-09-20 17:47:22.803 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?? -2024-09-20 17:47:22.803 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.803 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.804 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.804 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.804 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.805 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:22.806 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.806 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:22.806 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:22.806 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.806 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.806 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.806 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.807 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property openType -2024-09-20 17:47:22.807 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.807 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'openType' renamed to 'openType' -2024-09-20 17:47:22.807 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property openType to model -2024-09-20 17:47:22.807 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.807 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.808 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.808 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.808 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:22.809 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.809 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:22.809 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:22.809 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.809 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.809 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.809 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.809 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property timeLimit -2024-09-20 17:47:22.810 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.810 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'timeLimit' renamed to 'timeLimit' -2024-09-20 17:47:22.810 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property timeLimit to model -2024-09-20 17:47:22.810 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.810 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.811 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.811 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.811 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property startTime -2024-09-20 17:47:22.811 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.811 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'startTime' renamed to 'startTime' -2024-09-20 17:47:22.811 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property startTime to model -2024-09-20 17:47:22.813 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.813 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.813 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.813 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.813 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property endTime -2024-09-20 17:47:22.813 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.814 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'endTime' renamed to 'endTime' -2024-09-20 17:47:22.814 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property endTime to model -2024-09-20 17:47:22.814 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.814 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.814 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.814 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.814 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:22.815 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.815 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:22.815 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:22.815 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.815 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.815 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.815 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.815 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:22.816 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.817 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/exam/dto/ExamDTO; for parameter params -2024-09-20 17:47:22.818 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.818 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found content, createTime, endTime, id, openType, qualifyScore, startTime, state, timeLimit, title, totalScore, totalTime, updateTime -2024-09-20 17:47:22.818 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key -2024-09-20 17:47:22.819 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?߿ԷҳӦ?? -2024-09-20 17:47:22.819 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method myPaging -2024-09-20 17:47:22.820 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?߿ԷҳӦ?? -2024-09-20 17:47:22.820 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method myPaging -2024-09-20 17:47:22.820 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.820 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:22.821 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:22.821 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:22.821 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:22.821 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:22.821 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.821 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:22.821 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:22.821 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:22.823 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage???, name: ӿӦ?IPage???, schema: {} models -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage??? -2024-09-20 17:47:22.824 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.825 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.825 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.825 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.825 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.825 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.825 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.825 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.825 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.826 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.826 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.826 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.826 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:22.826 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.826 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:22.826 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:22.826 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.827 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property openType -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'openType' renamed to 'openType' -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property openType to model -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.829 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property timeLimit -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'timeLimit' renamed to 'timeLimit' -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property timeLimit to model -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property startTime -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.830 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'startTime' renamed to 'startTime' -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property startTime to model -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property endTime -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'endTime' renamed to 'endTime' -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property endTime to model -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.831 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.832 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.833 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:22.834 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.836 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:22.836 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:22.836 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.836 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.836 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.836 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.838 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:22.838 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.838 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:22.838 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:22.838 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.838 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.839 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.839 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.839 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:22.839 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.839 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:22.839 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:22.839 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.839 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.840 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.841 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.842 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:22.843 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.843 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:22.843 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:22.843 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.843 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.843 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.843 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.845 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:22.845 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.845 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.845 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:22.845 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.845 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.846 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.846 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:22.846 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.846 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/ExamDTO; -2024-09-20 17:47:22.847 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:22.847 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found content, createTime, endTime, id, openType, qualifyScore, startTime, state, timeLimit, title, totalScore, totalTime, updateTime -2024-09-20 17:47:22.847 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.849 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?? -2024-09-20 17:47:22.849 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ??, name: ҳ??, schema: {} models -2024-09-20 17:47:22.849 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found content, createTime, endTime, id, openType, qualifyScore, startTime, state, timeLimit, title, totalScore, totalTime, updateTime -2024-09-20 17:47:22.850 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage??? -2024-09-20 17:47:22.850 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:22.850 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage??? -2024-09-20 17:47:22.850 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:22.850 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.850 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |reviewPaging| -2024-09-20 17:47:22.851 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:22.851 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |reviewPaging| -2024-09-20 17:47:22.851 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |reviewPaging| -2024-09-20 17:47:22.852 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:22.852 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.853 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:22.853 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:22.853 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.853 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.853 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.854 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.854 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:22.854 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.854 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:22.854 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:22.854 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.855 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:22.856 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?ľҳӦ??, name: ӿӦ?IPage?ľҳӦ??, schema: {} models -2024-09-20 17:47:22.857 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?ľҳӦ?? -2024-09-20 17:47:22.857 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.857 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.857 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/exam/dto/response/ExamReviewRespDTO; -2024-09-20 17:47:22.857 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/exam/dto/response/ExamReviewRespDTO; -2024-09-20 17:47:22.858 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.858 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.858 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.858 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.858 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.858 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.859 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.860 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:22.860 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.860 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:22.860 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:22.860 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.860 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.860 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property openType -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'openType' renamed to 'openType' -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property openType to model -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getOpenType -2024-09-20 17:47:22.861 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property timeLimit -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'timeLimit' renamed to 'timeLimit' -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property timeLimit to model -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.862 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTimeLimit -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property startTime -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'startTime' renamed to 'startTime' -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property startTime to model -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getStartTime -2024-09-20 17:47:22.864 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property endTime -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'endTime' renamed to 'endTime' -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property endTime to model -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getEndTime -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:22.865 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.866 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.867 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:22.867 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.867 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:22.867 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:22.867 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.867 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.867 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.867 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:22.868 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examUser -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamUser -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examUser' renamed to 'examUser' -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examUser to model -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamUser -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamUser -2024-09-20 17:47:22.869 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamUser -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamUser -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property unreadPaper -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUnreadPaper -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'unreadPaper' renamed to 'unreadPaper' -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property unreadPaper to model -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUnreadPaper -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUnreadPaper -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUnreadPaper -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUnreadPaper -2024-09-20 17:47:22.871 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:22.872 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.872 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:22.872 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:22.872 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.872 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.872 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.872 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:22.872 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:22.873 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:22.874 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:22.875 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/response/ExamReviewRespDTO; -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/response/ExamReviewRespDTO; -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/exam/dto/response/ExamReviewRespDTO; -2024-09-20 17:47:22.876 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/exam/dto/response/ExamReviewRespDTO; -2024-09-20 17:47:22.878 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:22.878 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/response/ExamReviewRespDTO; -2024-09-20 17:47:22.878 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/response/ExamReviewRespDTO; -2024-09-20 17:47:22.878 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:22.878 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 15 properties. Properties found content, createTime, endTime, examUser, id, openType, qualifyScore, startTime, state, timeLimit, title, totalScore, totalTime, unreadPaper, updateTime -2024-09-20 17:47:22.879 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.879 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ľҳӦ -2024-09-20 17:47:22.879 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?ľҳӦ? -2024-09-20 17:47:22.879 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ??, name: ҳ??, schema: {} models -2024-09-20 17:47:22.879 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found content, createTime, endTime, id, openType, qualifyScore, startTime, state, timeLimit, title, totalScore, totalTime, updateTime -2024-09-20 17:47:22.880 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?ľҳӦ?? -2024-09-20 17:47:22.880 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method reviewPaging -2024-09-20 17:47:22.880 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?ľҳӦ?? -2024-09-20 17:47:22.880 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method reviewPaging -2024-09-20 17:47:22.881 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.881 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:22.881 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/exam/dto/request/ExamSaveReqDTO; -2024-09-20 17:47:22.881 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |save| -2024-09-20 17:47:22.881 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:22.882 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.882 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.882 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.883 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:22.884 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property openType -2024-09-20 17:47:22.886 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.886 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'openType' renamed to 'openType' -2024-09-20 17:47:22.886 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property openType to model -2024-09-20 17:47:22.886 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.886 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.886 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.886 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOpenType -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property timeLimit -2024-09-20 17:47:22.887 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'timeLimit' renamed to 'timeLimit' -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property timeLimit to model -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTimeLimit -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property startTime -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'startTime' renamed to 'startTime' -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property startTime to model -2024-09-20 17:47:22.888 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setStartTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property endTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'endTime' renamed to 'endTime' -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property endTime to model -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.889 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setEndTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.890 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.891 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:22.892 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:22.892 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.892 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:22.892 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:22.892 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.892 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.892 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.892 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:22.893 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:22.893 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.893 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:22.893 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:22.893 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.893 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.893 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.893 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:22.895 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property repoList -2024-09-20 17:47:22.895 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoList -2024-09-20 17:47:22.895 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'repoList' renamed to 'repoList' -2024-09-20 17:47:22.895 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property repoList to model -2024-09-20 17:47:22.895 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoList -2024-09-20 17:47:22.895 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoList -2024-09-20 17:47:22.895 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoList -2024-09-20 17:47:22.896 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoList -2024-09-20 17:47:22.896 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departIds -2024-09-20 17:47:22.896 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartIds -2024-09-20 17:47:22.896 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departIds' renamed to 'departIds' -2024-09-20 17:47:22.897 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departIds to model -2024-09-20 17:47:22.897 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartIds -2024-09-20 17:47:22.897 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartIds -2024-09-20 17:47:22.897 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartIds -2024-09-20 17:47:22.897 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartIds -2024-09-20 17:47:22.897 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 15 properties. Properties found content, createTime, departIds, endTime, id, openType, qualifyScore, repoList, startTime, state, timeLimit, title, totalScore, totalTime, updateTime -2024-09-20 17:47:22.898 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ա, name: Ա, schema: {} models -2024-09-20 17:47:22.898 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter departIds -2024-09-20 17:47:22.898 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:22.898 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:22.899 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoList -2024-09-20 17:47:22.899 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO; -2024-09-20 17:47:22.899 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO; -2024-09-20 17:47:22.899 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.900 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.900 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.900 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.900 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.900 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.900 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.900 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:22.900 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property repoId -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoId -2024-09-20 17:47:22.901 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'repoId' renamed to 'repoId' -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property repoId to model -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoId -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoId -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoId -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoId -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property radioCount -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioCount -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'radioCount' renamed to 'radioCount' -2024-09-20 17:47:22.902 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property radioCount to model -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioCount -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioCount -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioCount -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioCount -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property radioScore -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioScore -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'radioScore' renamed to 'radioScore' -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property radioScore to model -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioScore -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioScore -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioScore -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRadioScore -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property multiCount -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiCount -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'multiCount' renamed to 'multiCount' -2024-09-20 17:47:22.903 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property multiCount to model -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiCount -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiCount -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiCount -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiCount -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property multiScore -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiScore -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'multiScore' renamed to 'multiScore' -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property multiScore to model -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiScore -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiScore -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiScore -2024-09-20 17:47:22.905 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMultiScore -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property judgeCount -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeCount -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'judgeCount' renamed to 'judgeCount' -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property judgeCount to model -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeCount -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeCount -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeCount -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeCount -2024-09-20 17:47:22.906 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property judgeScore -2024-09-20 17:47:22.907 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeScore -2024-09-20 17:47:22.907 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'judgeScore' renamed to 'judgeScore' -2024-09-20 17:47:22.907 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property judgeScore to model -2024-09-20 17:47:22.907 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeScore -2024-09-20 17:47:22.907 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeScore -2024-09-20 17:47:22.907 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeScore -2024-09-20 17:47:22.907 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setJudgeScore -2024-09-20 17:47:22.907 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalRadio -2024-09-20 17:47:22.908 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalRadio -2024-09-20 17:47:22.908 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalRadio' renamed to 'totalRadio' -2024-09-20 17:47:22.908 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalRadio to model -2024-09-20 17:47:22.908 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalRadio -2024-09-20 17:47:22.908 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalRadio -2024-09-20 17:47:22.908 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalRadio -2024-09-20 17:47:22.908 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalRadio -2024-09-20 17:47:22.908 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalMulti -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalMulti -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalMulti' renamed to 'totalMulti' -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalMulti to model -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalMulti -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalMulti -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalMulti -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalMulti -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalJudge -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalJudge -2024-09-20 17:47:22.909 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalJudge' renamed to 'totalJudge' -2024-09-20 17:47:22.910 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalJudge to model -2024-09-20 17:47:22.910 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalJudge -2024-09-20 17:47:22.910 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalJudge -2024-09-20 17:47:22.910 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalJudge -2024-09-20 17:47:22.910 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalJudge -2024-09-20 17:47:22.910 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.911 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.911 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 12 properties. Properties found examId, id, judgeCount, judgeScore, multiCount, multiScore, radioCount, radioScore, repoId, totalJudge, totalMulti, totalRadio -2024-09-20 17:47:22.911 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:22.912 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:22.912 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method save -2024-09-20 17:47:22.912 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:22.912 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method save -2024-09-20 17:47:22.913 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.913 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |state| -2024-09-20 17:47:22.913 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseStateReqDTO; -2024-09-20 17:47:22.913 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |state| -2024-09-20 17:47:22.913 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |state| -2024-09-20 17:47:22.914 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:22.914 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property ids -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'ids' renamed to 'ids' -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property ids to model -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIds -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.915 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.916 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.916 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:22.916 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 2 properties. Properties found ids, state -2024-09-20 17:47:22.916 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ״̬, name: ͨ״̬, schema: {} models -2024-09-20 17:47:22.916 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨ״̬ -2024-09-20 17:47:22.916 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter ids -2024-09-20 17:47:22.916 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:22.916 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:22.917 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.917 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:22.918 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method state -2024-09-20 17:47:22.918 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:22.918 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method state -2024-09-20 17:47:22.926 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.927 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |checkProcess| -2024-09-20 17:47:22.927 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |checkProcess| -2024-09-20 17:47:22.927 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |checkProcess| -2024-09-20 17:47:22.928 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:22.928 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.928 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:22.928 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:22.928 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.928 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.929 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:22.930 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?Ծ?, name: ӿӦ?Ծ?, schema: {} models -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?Ծ? -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/paper/dto/PaperDTO; -2024-09-20 17:47:22.931 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/paper/dto/PaperDTO; -2024-09-20 17:47:22.933 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.934 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:22.936 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.936 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:22.936 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:22.936 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.936 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.936 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.936 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:22.937 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:22.938 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userTime' renamed to 'userTime' -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userTime to model -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.939 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.940 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property objScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'objScore' renamed to 'objScore' -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property objScore to model -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.941 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property subjScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'subjScore' renamed to 'subjScore' -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property subjScore to model -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:22.942 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userScore' renamed to 'userScore' -2024-09-20 17:47:22.943 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userScore to model -2024-09-20 17:47:22.943 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:22.943 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:22.943 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:22.943 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:22.943 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hasSaq -2024-09-20 17:47:22.943 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:22.943 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hasSaq' renamed to 'hasSaq' -2024-09-20 17:47:22.944 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hasSaq to model -2024-09-20 17:47:22.944 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:22.944 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:22.944 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:22.944 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:22.945 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.946 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property limitTime -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'limitTime' renamed to 'limitTime' -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property limitTime to model -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:22.947 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:22.948 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/paper/dto/PaperDTO; for parameter data -2024-09-20 17:47:22.948 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/paper/dto/PaperDTO; -2024-09-20 17:47:22.948 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 17 properties. Properties found createTime, departId, examId, hasSaq, id, limitTime, objScore, qualifyScore, state, subjScore, title, totalScore, totalTime, updateTime, userId, userScore, userTime -2024-09-20 17:47:22.948 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ծ -2024-09-20 17:47:22.949 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?Ծ? -2024-09-20 17:47:22.949 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method checkProcess -2024-09-20 17:47:22.949 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?Ծ? -2024-09-20 17:47:22.949 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method checkProcess -2024-09-20 17:47:22.950 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.950 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:22.950 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdsReqDTO; -2024-09-20 17:47:22.950 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |edit| -2024-09-20 17:47:22.950 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:22.951 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:22.951 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ -2024-09-20 17:47:22.951 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ɾ, name: ɾ, schema: {} models -2024-09-20 17:47:22.951 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ɾ -2024-09-20 17:47:22.951 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.952 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:22.952 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method edit -2024-09-20 17:47:22.952 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:22.953 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method edit -2024-09-20 17:47:22.953 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_1 -2024-09-20 17:47:22.953 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.953 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |fillAnswer| -2024-09-20 17:47:22.953 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/paper/dto/request/PaperAnswerDTO; -2024-09-20 17:47:22.953 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |fillAnswer| -2024-09-20 17:47:22.954 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |fillAnswer| -2024-09-20 17:47:22.954 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:22.954 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.954 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.956 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:22.957 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ԾĿ?, name: ӿӦ?ԾĿ?, schema: {} models -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?ԾĿ? -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO; -2024-09-20 17:47:22.958 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO; -2024-09-20 17:47:22.959 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.959 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.960 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.960 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.960 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.960 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.960 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.960 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.960 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property paperId -2024-09-20 17:47:22.960 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'paperId' renamed to 'paperId' -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property paperId to model -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.961 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quType -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quType' renamed to 'quType' -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quType to model -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answered -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:22.962 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answered' renamed to 'answered' -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answered to model -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answer -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answer' renamed to 'answer' -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answer to model -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:22.963 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property score -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:22.964 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'score' renamed to 'score' -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property score to model -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property actualScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'actualScore' renamed to 'actualScore' -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property actualScore to model -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:22.965 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property isRight -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'isRight' renamed to 'isRight' -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property isRight to model -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property image -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'image' renamed to 'image' -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property image to model -2024-09-20 17:47:22.966 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.967 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.968 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.968 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answerList -2024-09-20 17:47:22.968 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:22.968 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answerList' renamed to 'answerList' -2024-09-20 17:47:22.968 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answerList to model -2024-09-20 17:47:22.968 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:22.968 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:22.968 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:22.969 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:22.969 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter answerList -2024-09-20 17:47:22.969 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO; -2024-09-20 17:47:22.970 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO; -2024-09-20 17:47:22.970 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.970 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.970 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.970 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.970 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.970 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.970 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property paperId -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'paperId' renamed to 'paperId' -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property paperId to model -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.971 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answerId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answerId' renamed to 'answerId' -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answerId to model -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.972 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property isRight -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'isRight' renamed to 'isRight' -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property isRight to model -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property checked -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChecked -2024-09-20 17:47:22.973 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'checked' renamed to 'checked' -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property checked to model -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChecked -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChecked -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChecked -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChecked -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.974 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property abc -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAbc -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'abc' renamed to 'abc' -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property abc to model -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAbc -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAbc -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAbc -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAbc -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property image -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'image' renamed to 'image' -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property image to model -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.975 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.977 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:22.978 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO; for parameter data -2024-09-20 17:47:22.978 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO; -2024-09-20 17:47:22.978 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter answerList -2024-09-20 17:47:22.978 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO; -2024-09-20 17:47:22.978 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO; -2024-09-20 17:47:22.978 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found actualScore, answer, answerList, answered, content, id, image, isRight, paperId, quId, quType, score, sort -2024-09-20 17:47:22.978 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.979 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found abc, answerId, checked, content, id, image, isRight, paperId, quId, sort -2024-09-20 17:47:22.979 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ԾĿ -2024-09-20 17:47:22.979 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ծⱸѡ -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property paperId -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'paperId' renamed to 'paperId' -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property paperId to model -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:22.980 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answers -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswers -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answers' renamed to 'answers' -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answers to model -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswers -2024-09-20 17:47:22.981 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswers -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswers -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswers -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answer -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswer -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answer' renamed to 'answer' -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answer to model -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswer -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswer -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswer -2024-09-20 17:47:22.982 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswer -2024-09-20 17:47:22.983 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found answer, answers, paperId, quId -2024-09-20 17:47:22.983 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ԾĿ, name: ԾĿ, schema: {} models -2024-09-20 17:47:22.983 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ԾĿ -2024-09-20 17:47:22.983 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter answers -2024-09-20 17:47:22.983 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:22.983 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:22.983 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.984 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ԾĿ? -2024-09-20 17:47:22.984 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method fillAnswer -2024-09-20 17:47:22.984 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ԾĿ? -2024-09-20 17:47:22.984 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method fillAnswer -2024-09-20 17:47:22.984 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.985 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:22.985 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdReqDTO; -2024-09-20 17:47:22.985 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |find| -2024-09-20 17:47:22.985 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:22.985 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?Ծ?, name: ӿӦ?Ծ?, schema: {} models -2024-09-20 17:47:22.985 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 17 properties. Properties found createTime, departId, examId, hasSaq, id, limitTime, objScore, qualifyScore, state, subjScore, title, totalScore, totalTime, updateTime, userId, userScore, userTime -2024-09-20 17:47:22.986 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:22.986 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨ -2024-09-20 17:47:22.986 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?Ծ? -2024-09-20 17:47:22.986 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method find -2024-09-20 17:47:22.986 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?Ծ? -2024-09-20 17:47:22.986 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method find -2024-09-20 17:47:22.986 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findUsingPOST_1 -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |handleExam| -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdReqDTO; -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |handleExam| -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |handleExam| -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ԾĿ?, name: ӿӦ?ԾĿ?, schema: {} models -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found actualScore, answer, answerList, answered, content, id, image, isRight, paperId, quId, quType, score, sort -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:22.988 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found abc, answerId, checked, content, id, image, isRight, paperId, quId, sort -2024-09-20 17:47:22.989 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:22.989 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ԾĿ? -2024-09-20 17:47:22.989 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method handleExam -2024-09-20 17:47:22.989 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ԾĿ? -2024-09-20 17:47:22.989 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method handleExam -2024-09-20 17:47:22.990 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:22.990 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:22.990 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:22.990 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:22.990 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:22.990 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:22.991 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.991 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:22.991 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:22.991 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.991 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.991 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.991 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:22.991 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:22.992 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.993 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:22.994 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:22.994 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?ԾбӦ??, name: ӿӦ?IPage?ԾбӦ??, schema: {} models -2024-09-20 17:47:22.994 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?ԾбӦ?? -2024-09-20 17:47:22.994 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.994 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:22.994 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/paper/dto/response/PaperListRespDTO; -2024-09-20 17:47:22.994 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/paper/dto/response/PaperListRespDTO; -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:22.995 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:22.996 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:22.997 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userTime -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userTime' renamed to 'userTime' -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userTime to model -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:22.998 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property objScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'objScore' renamed to 'objScore' -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property objScore to model -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property subjScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'subjScore' renamed to 'subjScore' -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property subjScore to model -2024-09-20 17:47:22.999 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userScore' renamed to 'userScore' -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userScore to model -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hasSaq -2024-09-20 17:47:23.000 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hasSaq' renamed to 'hasSaq' -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hasSaq to model -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.001 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.002 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.002 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.002 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.002 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.002 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.002 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.002 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.002 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.003 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property limitTime -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'limitTime' renamed to 'limitTime' -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property limitTime to model -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property realName -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'realName' renamed to 'realName' -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property realName to model -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.004 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:23.005 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:23.006 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:23.008 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/response/PaperListRespDTO; -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/response/PaperListRespDTO; -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/paper/dto/response/PaperListRespDTO; -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/paper/dto/response/PaperListRespDTO; -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/response/PaperListRespDTO; -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/response/PaperListRespDTO; -2024-09-20 17:47:23.009 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.010 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 18 properties. Properties found createTime, departId, examId, hasSaq, id, limitTime, objScore, qualifyScore, realName, state, subjScore, title, totalScore, totalTime, updateTime, userId, userScore, userTime -2024-09-20 17:47:23.010 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.010 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?ԾбӦ? -2024-09-20 17:47:23.010 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ԾбӦ -2024-09-20 17:47:23.010 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.011 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.011 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.011 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.011 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.011 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.011 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:23.012 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.013 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.014 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.014 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:23.014 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?Ծ?, name: ҳ?Ծ?, schema: {} models -2024-09-20 17:47:23.014 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?Ծ? -2024-09-20 17:47:23.014 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/paper/dto/request/PaperListReqDTO; -2024-09-20 17:47:23.014 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/paper/dto/request/PaperListReqDTO; -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.015 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.016 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property realName -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'realName' renamed to 'realName' -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property realName to model -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.017 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.018 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.018 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/paper/dto/request/PaperListReqDTO; for parameter params -2024-09-20 17:47:23.018 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/paper/dto/request/PaperListReqDTO; -2024-09-20 17:47:23.018 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 5 properties. Properties found departId, examId, realName, state, userId -2024-09-20 17:47:23.018 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a missing property realName to model Ծ -2024-09-20 17:47:23.019 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?ԾбӦ?? -2024-09-20 17:47:23.020 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:23.020 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?ԾбӦ?? -2024-09-20 17:47:23.020 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:23.020 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pagingUsingPOST_1 -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paperDetail| -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdReqDTO; -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paperDetail| -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paperDetail| -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.021 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.022 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ??, name: ӿӦ??, schema: {} models -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?? -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/paper/dto/response/ExamDetailRespDTO; -2024-09-20 17:47:23.024 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/paper/dto/response/ExamDetailRespDTO; -2024-09-20 17:47:23.025 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.025 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.025 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.025 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.025 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.025 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.026 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.027 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.028 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userTime -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userTime' renamed to 'userTime' -2024-09-20 17:47:23.029 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userTime to model -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.030 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property objScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'objScore' renamed to 'objScore' -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property objScore to model -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property subjScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'subjScore' renamed to 'subjScore' -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property subjScore to model -2024-09-20 17:47:23.031 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userScore' renamed to 'userScore' -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userScore to model -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hasSaq -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hasSaq' renamed to 'hasSaq' -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hasSaq to model -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.032 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property limitTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.033 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'limitTime' renamed to 'limitTime' -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property limitTime to model -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property radioList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'radioList' renamed to 'radioList' -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property radioList to model -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property multiList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'multiList' renamed to 'multiList' -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property multiList to model -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property judgeList -2024-09-20 17:47:23.034 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeList -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'judgeList' renamed to 'judgeList' -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property judgeList to model -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeList -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeList -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeList -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeList -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property leftSeconds -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLeftSeconds -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'leftSeconds' renamed to 'leftSeconds' -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property leftSeconds to model -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLeftSeconds -2024-09-20 17:47:23.035 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLeftSeconds -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLeftSeconds -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLeftSeconds -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter judgeList -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.036 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property paperId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'paperId' renamed to 'paperId' -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property paperId to model -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPaperId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quType -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quType' renamed to 'quType' -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quType to model -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.037 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answered -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answered' renamed to 'answered' -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answered to model -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswered -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answer -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answer' renamed to 'answer' -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answer to model -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswer -2024-09-20 17:47:23.038 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property score -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'score' renamed to 'score' -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property score to model -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property actualScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'actualScore' renamed to 'actualScore' -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property actualScore to model -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:23.039 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getActualScore -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property isRight -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'isRight' renamed to 'isRight' -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property isRight to model -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter multiList -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter radioList -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/paper/dto/response/ExamDetailRespDTO; for parameter data -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/paper/dto/response/ExamDetailRespDTO; -2024-09-20 17:47:23.040 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter judgeList -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter multiList -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter radioList -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/PaperQuDTO; -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 21 properties. Properties found createTime, departId, examId, hasSaq, id, judgeList, leftSeconds, limitTime, multiList, objScore, qualifyScore, radioList, state, subjScore, title, totalScore, totalTime, updateTime, userId, userScore, userTime -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found actualScore, answer, answered, id, isRight, paperId, quId, quType, score, sort -2024-09-20 17:47:23.041 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key -2024-09-20 17:47:23.042 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ծ -2024-09-20 17:47:23.042 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:23.042 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?? -2024-09-20 17:47:23.042 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paperDetail -2024-09-20 17:47:23.043 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?? -2024-09-20 17:47:23.043 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paperDetail -2024-09-20 17:47:23.043 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.043 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paperResult| -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdReqDTO; -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paperResult| -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paperResult| -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.044 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.046 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ԽչʾӦ?, name: ӿӦ?ԽչʾӦ?, schema: {} models -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?ԽչʾӦ? -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/paper/dto/response/ExamResultRespDTO; -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/paper/dto/response/ExamResultRespDTO; -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.047 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:23.048 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:23.049 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userTime' renamed to 'userTime' -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userTime to model -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserTime -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotalScore -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.050 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQualifyScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property objScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'objScore' renamed to 'objScore' -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property objScore to model -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getObjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property subjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'subjScore' renamed to 'subjScore' -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property subjScore to model -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.051 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSubjScore -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userScore -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userScore' renamed to 'userScore' -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userScore to model -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserScore -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hasSaq -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hasSaq' renamed to 'hasSaq' -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hasSaq to model -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.052 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getHasSaq -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.053 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property limitTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'limitTime' renamed to 'limitTime' -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property limitTime to model -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLimitTime -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quList -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuList -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quList' renamed to 'quList' -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quList to model -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuList -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuList -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuList -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuList -2024-09-20 17:47:23.054 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter quList -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO; -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO; -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter answerList -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO; -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO; -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/paper/dto/response/ExamResultRespDTO; for parameter data -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/paper/dto/response/ExamResultRespDTO; -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter quList -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO; -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuDetailDTO; -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter answerList -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO; -2024-09-20 17:47:23.055 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/paper/dto/ext/PaperQuAnswerExtDTO; -2024-09-20 17:47:23.056 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 18 properties. Properties found createTime, departId, examId, hasSaq, id, limitTime, objScore, quList, qualifyScore, state, subjScore, title, totalScore, totalTime, updateTime, userId, userScore, userTime -2024-09-20 17:47:23.056 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.056 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found actualScore, answer, answerList, answered, content, id, image, isRight, paperId, quId, quType, score, sort -2024-09-20 17:47:23.056 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.056 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found abc, answerId, checked, content, id, image, isRight, paperId, quId, sort -2024-09-20 17:47:23.056 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ԽչʾӦ -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ԽչʾӦ? -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paperResult -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ԽչʾӦ? -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paperResult -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |quDetail| -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/paper/dto/request/PaperQuQueryDTO; -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |quDetail| -2024-09-20 17:47:23.057 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |quDetail| -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ԾĿ?, name: ӿӦ?ԾĿ?, schema: {} models -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 13 properties. Properties found actualScore, answer, answerList, answered, content, id, image, isRight, paperId, quId, quType, score, sort -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found abc, answerId, checked, content, id, image, isRight, paperId, quId, sort -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property paperId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'paperId' renamed to 'paperId' -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property paperId to model -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPaperId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.058 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 2 properties. Properties found paperId, quId -2024-09-20 17:47:23.060 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ԾĿ, name: ԾĿ, schema: {} models -2024-09-20 17:47:23.060 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ԾĿ? -2024-09-20 17:47:23.061 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method quDetail -2024-09-20 17:47:23.061 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ԾĿ? -2024-09-20 17:47:23.061 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method quDetail -2024-09-20 17:47:23.062 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.062 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.062 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/paper/dto/request/PaperCreateReqDTO; -2024-09-20 17:47:23.062 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.062 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.063 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ͨӦ?, name: ӿӦ?ͨӦ?, schema: {} models -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?ͨӦ? -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/core/api/dto/BaseIdRespDTO; -2024-09-20 17:47:23.064 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/core/api/dto/BaseIdRespDTO; -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/core/api/dto/BaseIdRespDTO; for parameter data -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/core/api/dto/BaseIdRespDTO; -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 1 properties. Properties found id -2024-09-20 17:47:23.065 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨӦ -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 1 properties. Properties found examId -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ծ, name: Ծ, schema: {} models -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ծ -2024-09-20 17:47:23.066 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ͨӦ? -2024-09-20 17:47:23.067 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method save -2024-09-20 17:47:23.067 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ͨӦ? -2024-09-20 17:47:23.067 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method save -2024-09-20 17:47:23.067 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_1 -2024-09-20 17:47:23.067 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.067 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.067 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/paper/dto/PaperDTO; -2024-09-20 17:47:23.067 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ͨӦ?, name: ӿӦ?ͨӦ?, schema: {} models -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 1 properties. Properties found id -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.068 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.069 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.069 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.069 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:23.069 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.069 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:23.069 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:23.069 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.070 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalTime -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalTime' renamed to 'totalTime' -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalTime to model -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:23.071 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userTime' renamed to 'userTime' -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userTime to model -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserTime -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property totalScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'totalScore' renamed to 'totalScore' -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property totalScore to model -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTotalScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property qualifyScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'qualifyScore' renamed to 'qualifyScore' -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property qualifyScore to model -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:23.072 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQualifyScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property objScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setObjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'objScore' renamed to 'objScore' -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property objScore to model -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setObjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setObjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setObjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setObjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property subjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSubjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'subjScore' renamed to 'subjScore' -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property subjScore to model -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSubjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSubjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSubjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSubjScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userScore' renamed to 'userScore' -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userScore to model -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserScore -2024-09-20 17:47:23.073 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserScore -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hasSaq -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setHasSaq -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hasSaq' renamed to 'hasSaq' -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hasSaq to model -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setHasSaq -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setHasSaq -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setHasSaq -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setHasSaq -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.074 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property limitTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLimitTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'limitTime' renamed to 'limitTime' -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property limitTime to model -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLimitTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLimitTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLimitTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLimitTime -2024-09-20 17:47:23.075 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 17 properties. Properties found createTime, departId, examId, hasSaq, id, limitTime, objScore, qualifyScore, state, subjScore, title, totalScore, totalTime, updateTime, userId, userScore, userTime -2024-09-20 17:47:23.076 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ծ, name: Ծ, schema: {} models -2024-09-20 17:47:23.076 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ͨӦ? -2024-09-20 17:47:23.077 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method save -2024-09-20 17:47:23.077 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ͨӦ? -2024-09-20 17:47:23.078 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method save -2024-09-20 17:47:23.078 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_2 -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |detail| -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdReqDTO; -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |detail| -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |detail| -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.080 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.082 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.083 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.083 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.083 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?Ŀ?, name: ӿӦ?Ŀ?, schema: {} models -2024-09-20 17:47:23.083 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?Ŀ? -2024-09-20 17:47:23.083 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/qu/dto/ext/QuDetailDTO; -2024-09-20 17:47:23.083 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/qu/dto/ext/QuDetailDTO; -2024-09-20 17:47:23.083 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quType -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quType' renamed to 'quType' -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quType to model -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property level -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'level' renamed to 'level' -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property level to model -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.084 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property image -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'image' renamed to 'image' -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property image to model -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.085 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.086 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remark -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remark' renamed to 'remark' -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remark to model -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property analysis -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'analysis' renamed to 'analysis' -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property analysis to model -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answerList -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answerList' renamed to 'answerList' -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answerList to model -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:23.087 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnswerList -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property repoIds -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoIds -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'repoIds' renamed to 'repoIds' -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property repoIds to model -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoIds -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoIds -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoIds -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRepoIds -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter answerList -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/qu/dto/QuAnswerDTO; -2024-09-20 17:47:23.088 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/qu/dto/QuAnswerDTO; -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property isRight -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'isRight' renamed to 'isRight' -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property isRight to model -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getIsRight -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property image -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'image' renamed to 'image' -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property image to model -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.089 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property analysis -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'analysis' renamed to 'analysis' -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property analysis to model -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoIds -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/qu/dto/ext/QuDetailDTO; for parameter data -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/qu/dto/ext/QuDetailDTO; -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter answerList -2024-09-20 17:47:23.091 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/qu/dto/QuAnswerDTO; -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/qu/dto/QuAnswerDTO; -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoIds -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 11 properties. Properties found analysis, answerList, content, createTime, id, image, level, quType, remark, repoIds, updateTime -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 6 properties. Properties found analysis, content, id, image, isRight, quId -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ѡ -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ŀ -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:23.092 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨ -2024-09-20 17:47:23.093 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?Ŀ? -2024-09-20 17:47:23.093 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method detail -2024-09-20 17:47:23.093 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?Ŀ? -2024-09-20 17:47:23.093 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method detail -2024-09-20 17:47:23.093 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.093 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.094 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdsReqDTO; -2024-09-20 17:47:23.094 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.094 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.094 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.094 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ -2024-09-20 17:47:23.094 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ɾ, name: ɾ, schema: {} models -2024-09-20 17:47:23.094 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ɾ -2024-09-20 17:47:23.094 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.095 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.095 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method edit -2024-09-20 17:47:23.095 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.096 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method edit -2024-09-20 17:47:23.096 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_2 -2024-09-20 17:47:23.096 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.096 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.096 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.096 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.096 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.096 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.097 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?List?Ŀ??, name: ӿӦ?List?Ŀ??, schema: {} models -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?List?Ŀ?? -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Ljava/util/List; -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Ljava/util/List; -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.098 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quType -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quType' renamed to 'quType' -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quType to model -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuType -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property level -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'level' renamed to 'level' -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property level to model -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getLevel -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property image -2024-09-20 17:47:23.099 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.100 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'image' renamed to 'image' -2024-09-20 17:47:23.100 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property image to model -2024-09-20 17:47:23.100 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.100 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.100 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.100 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getImage -2024-09-20 17:47:23.100 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:23.101 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.101 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:23.101 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:23.101 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.101 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.101 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.101 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getContent -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.102 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remark -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remark' renamed to 'remark' -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remark to model -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property analysis -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'analysis' renamed to 'analysis' -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property analysis to model -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.104 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.105 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getAnalysis -2024-09-20 17:47:23.105 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter data -2024-09-20 17:47:23.105 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.105 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.105 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.105 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 9 properties. Properties found analysis, content, createTime, id, image, level, quType, remark, updateTime -2024-09-20 17:47:23.105 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ŀ -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quType -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quType' renamed to 'quType' -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quType to model -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.106 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property level -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'level' renamed to 'level' -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property level to model -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property image -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'image' renamed to 'image' -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property image to model -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.107 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.108 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remark -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remark' renamed to 'remark' -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remark to model -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property analysis -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'analysis' renamed to 'analysis' -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property analysis to model -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.109 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.110 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.110 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 9 properties. Properties found analysis, content, createTime, id, image, level, quType, remark, updateTime -2024-09-20 17:47:23.110 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ŀ, name: Ŀ, schema: {} models -2024-09-20 17:47:23.110 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?List?Ŀ?? -2024-09-20 17:47:23.110 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method list -2024-09-20 17:47:23.110 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?List?Ŀ?? -2024-09-20 17:47:23.110 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method list -2024-09-20 17:47:23.111 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.111 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.111 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:23.111 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.112 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.112 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.112 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.113 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.114 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?Ŀ??, name: ӿӦ?IPage?Ŀ??, schema: {} models -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?Ŀ?? -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.115 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:23.116 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.118 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:23.119 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.119 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:23.119 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:23.119 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.119 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.119 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.119 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.119 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:23.120 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.120 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:23.120 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:23.120 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.120 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.120 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.120 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.121 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.121 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.121 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.121 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:23.121 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.122 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.122 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.122 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.122 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.122 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/qu/dto/QuDTO; -2024-09-20 17:47:23.122 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.123 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 9 properties. Properties found analysis, content, createTime, id, image, level, quType, remark, updateTime -2024-09-20 17:47:23.123 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.123 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?Ŀ? -2024-09-20 17:47:23.123 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.123 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.124 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.124 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.124 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.124 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.124 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.125 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.126 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:23.126 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.126 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:23.126 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:23.126 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.126 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.126 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.126 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?Ŀѯ?, name: ҳ?Ŀѯ?, schema: {} models -2024-09-20 17:47:23.127 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?Ŀѯ? -2024-09-20 17:47:23.128 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/qu/dto/request/QuQueryReqDTO; -2024-09-20 17:47:23.128 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/qu/dto/request/QuQueryReqDTO; -2024-09-20 17:47:23.128 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quType -2024-09-20 17:47:23.128 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.128 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quType' renamed to 'quType' -2024-09-20 17:47:23.128 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quType to model -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property repoIds -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'repoIds' renamed to 'repoIds' -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property repoIds to model -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:23.129 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property excludes -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'excludes' renamed to 'excludes' -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property excludes to model -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter excludes -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoIds -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/qu/dto/request/QuQueryReqDTO; for parameter params -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/qu/dto/request/QuQueryReqDTO; -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter excludes -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoIds -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found content, excludes, quType, repoIds -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.130 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ŀѯ -2024-09-20 17:47:23.132 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?Ŀ?? -2024-09-20 17:47:23.132 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:23.132 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?Ŀ?? -2024-09-20 17:47:23.132 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:23.132 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pagingUsingPOST_2 -2024-09-20 17:47:23.133 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.133 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.133 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/qu/dto/ext/QuDetailDTO; -2024-09-20 17:47:23.133 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.133 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.133 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.133 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quType -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quType' renamed to 'quType' -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quType to model -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuType -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property level -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'level' renamed to 'level' -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property level to model -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.134 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setLevel -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property image -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'image' renamed to 'image' -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property image to model -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:23.135 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.136 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remark -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remark' renamed to 'remark' -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remark to model -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property analysis -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'analysis' renamed to 'analysis' -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property analysis to model -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property answerList -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswerList -2024-09-20 17:47:23.137 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'answerList' renamed to 'answerList' -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property answerList to model -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswerList -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswerList -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswerList -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnswerList -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property repoIds -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'repoIds' renamed to 'repoIds' -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property repoIds to model -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 11 properties. Properties found analysis, answerList, content, createTime, id, image, level, quType, remark, repoIds, updateTime -2024-09-20 17:47:23.138 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ŀ, name: Ŀ, schema: {} models -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter answerList -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/qu/dto/QuAnswerDTO; -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/qu/dto/QuAnswerDTO; -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.139 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property isRight -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIsRight -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'isRight' renamed to 'isRight' -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property isRight to model -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIsRight -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIsRight -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIsRight -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setIsRight -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property image -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'image' renamed to 'image' -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property image to model -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.140 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setImage -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property content -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'content' renamed to 'content' -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property content to model -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setContent -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property analysis -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'analysis' renamed to 'analysis' -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property analysis to model -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAnalysis -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoIds -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.141 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.142 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.142 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 6 properties. Properties found analysis, content, id, image, isRight, quId -2024-09-20 17:47:23.142 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.142 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ͨӦ?, name: ӿӦ?ͨӦ?, schema: {} models -2024-09-20 17:47:23.142 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?ͨӦ? -2024-09-20 17:47:23.142 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 1 properties. Properties found id -2024-09-20 17:47:23.142 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨӦ -2024-09-20 17:47:23.143 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ͨӦ? -2024-09-20 17:47:23.143 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method save -2024-09-20 17:47:23.143 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ͨӦ? -2024-09-20 17:47:23.143 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method save -2024-09-20 17:47:23.143 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_3 -2024-09-20 17:47:23.144 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.144 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |batchAction| -2024-09-20 17:47:23.144 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/qu/dto/request/QuRepoBatchReqDTO; -2024-09-20 17:47:23.144 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |batchAction| -2024-09-20 17:47:23.144 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |batchAction| -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quIds -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuIds -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quIds' renamed to 'quIds' -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quIds to model -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuIds -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuIds -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuIds -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuIds -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property repoIds -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'repoIds' renamed to 'repoIds' -2024-09-20 17:47:23.145 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property repoIds to model -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRepoIds -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remove -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemove -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remove' renamed to 'remove' -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remove to model -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemove -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemove -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemove -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemove -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 3 properties. Properties found quIds, remove, repoIds -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: , name: , schema: {} models -2024-09-20 17:47:23.146 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter quIds -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter repoIds -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.147 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method batchAction -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method batchAction -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdsReqDTO; -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.149 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.150 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.150 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ɾ, name: ɾ, schema: {} models -2024-09-20 17:47:23.150 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ɾ -2024-09-20 17:47:23.150 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.150 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.150 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method edit -2024-09-20 17:47:23.150 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.150 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method edit -2024-09-20 17:47:23.150 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_3 -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdReqDTO; -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨ -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.151 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.152 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.153 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.153 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.153 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ??, name: ӿӦ??, schema: {} models -2024-09-20 17:47:23.153 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?? -2024-09-20 17:47:23.153 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/repo/dto/RepoDTO; -2024-09-20 17:47:23.153 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/repo/dto/RepoDTO; -2024-09-20 17:47:23.153 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remark -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remark' renamed to 'remark' -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remark to model -2024-09-20 17:47:23.154 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/repo/dto/RepoDTO; for parameter data -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/repo/dto/RepoDTO; -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 6 properties. Properties found code, createTime, id, remark, title, updateTime -2024-09-20 17:47:23.155 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key -2024-09-20 17:47:23.156 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?? -2024-09-20 17:47:23.156 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method find -2024-09-20 17:47:23.156 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?? -2024-09-20 17:47:23.156 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method find -2024-09-20 17:47:23.156 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findUsingPOST_2 -2024-09-20 17:47:23.156 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.157 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?ҳ?, name: ҳ?ҳ?, schema: {} models -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?ҳ? -2024-09-20 17:47:23.158 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/repo/dto/request/RepoReqDTO; -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/repo/dto/request/RepoReqDTO; -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.159 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remark -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remark' renamed to 'remark' -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remark to model -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.160 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.161 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property excludes -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'excludes' renamed to 'excludes' -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property excludes to model -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExcludes -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter excludes -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/repo/dto/request/RepoReqDTO; for parameter params -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/repo/dto/request/RepoReqDTO; -2024-09-20 17:47:23.162 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter excludes -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found code, createTime, excludes, id, remark, title, updateTime -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.164 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.165 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?ҳӦ??, name: ӿӦ?IPage?ҳӦ??, schema: {} models -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?ҳӦ?? -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/repo/dto/response/RepoRespDTO; -2024-09-20 17:47:23.166 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/repo/dto/response/RepoRespDTO; -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.167 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remark -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remark' renamed to 'remark' -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remark to model -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRemark -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.168 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property multiCount -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'multiCount' renamed to 'multiCount' -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property multiCount to model -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:23.169 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMultiCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property radioCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'radioCount' renamed to 'radioCount' -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property radioCount to model -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRadioCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property judgeCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'judgeCount' renamed to 'judgeCount' -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property judgeCount to model -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getJudgeCount -2024-09-20 17:47:23.170 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:23.171 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/repo/dto/response/RepoRespDTO; -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/repo/dto/response/RepoRespDTO; -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:23.173 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/repo/dto/response/RepoRespDTO; -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/repo/dto/response/RepoRespDTO; -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/repo/dto/response/RepoRespDTO; -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/repo/dto/response/RepoRespDTO; -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 9 properties. Properties found code, createTime, id, judgeCount, multiCount, radioCount, remark, title, updateTime -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?ҳӦ? -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳӦ -2024-09-20 17:47:23.174 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?ҳӦ?? -2024-09-20 17:47:23.175 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:23.175 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?ҳӦ?? -2024-09-20 17:47:23.175 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:23.175 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pagingUsingPOST_3 -2024-09-20 17:47:23.175 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.175 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.175 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/repo/dto/RepoDTO; -2024-09-20 17:47:23.175 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.175 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCode -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.176 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property remark -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'remark' renamed to 'remark' -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property remark to model -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRemark -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.177 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 6 properties. Properties found code, createTime, id, remark, title, updateTime -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: , name: , schema: {} models -2024-09-20 17:47:23.178 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.180 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method save -2024-09-20 17:47:23.180 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.180 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method save -2024-09-20 17:47:23.180 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_4 -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.181 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ͨ?, name: ӿӦ?ͨ?, schema: {} models -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?ͨ? -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/config/dto/SysConfigDTO; -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/config/dto/SysConfigDTO; -2024-09-20 17:47:23.182 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property siteName -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSiteName -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'siteName' renamed to 'siteName' -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property siteName to model -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSiteName -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSiteName -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSiteName -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSiteName -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property frontLogo -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getFrontLogo -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'frontLogo' renamed to 'frontLogo' -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property frontLogo to model -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getFrontLogo -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getFrontLogo -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getFrontLogo -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getFrontLogo -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property backLogo -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getBackLogo -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'backLogo' renamed to 'backLogo' -2024-09-20 17:47:23.183 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property backLogo to model -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getBackLogo -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getBackLogo -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getBackLogo -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getBackLogo -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property copyRight -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCopyRight -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'copyRight' renamed to 'copyRight' -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property copyRight to model -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCopyRight -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCopyRight -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCopyRight -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCopyRight -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/sys/config/dto/SysConfigDTO; for parameter data -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/sys/config/dto/SysConfigDTO; -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 5 properties. Properties found backLogo, copyRight, frontLogo, id, siteName -2024-09-20 17:47:23.184 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨ -2024-09-20 17:47:23.185 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ͨ? -2024-09-20 17:47:23.185 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method find -2024-09-20 17:47:23.185 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ͨ? -2024-09-20 17:47:23.185 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method find -2024-09-20 17:47:23.185 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findUsingPOST_3 -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/config/dto/SysConfigDTO; -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ͨӦ?, name: ӿӦ?ͨӦ?, schema: {} models -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?ͨӦ? -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 1 properties. Properties found id -2024-09-20 17:47:23.186 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨӦ -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property siteName -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSiteName -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'siteName' renamed to 'siteName' -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property siteName to model -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSiteName -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSiteName -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSiteName -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSiteName -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property frontLogo -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setFrontLogo -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'frontLogo' renamed to 'frontLogo' -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property frontLogo to model -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setFrontLogo -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setFrontLogo -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setFrontLogo -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setFrontLogo -2024-09-20 17:47:23.187 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property backLogo -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setBackLogo -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'backLogo' renamed to 'backLogo' -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property backLogo to model -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setBackLogo -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setBackLogo -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setBackLogo -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setBackLogo -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property copyRight -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCopyRight -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'copyRight' renamed to 'copyRight' -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property copyRight to model -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCopyRight -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCopyRight -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCopyRight -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCopyRight -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 5 properties. Properties found backLogo, copyRight, frontLogo, id, siteName -2024-09-20 17:47:23.188 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:23.189 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ͨӦ? -2024-09-20 17:47:23.189 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method save -2024-09-20 17:47:23.189 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ͨӦ? -2024-09-20 17:47:23.189 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method save -2024-09-20 17:47:23.189 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_5 -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdsReqDTO; -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ɾ, name: ɾ, schema: {} models -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ɾ -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method edit -2024-09-20 17:47:23.190 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.191 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method edit -2024-09-20 17:47:23.191 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_4 -2024-09-20 17:47:23.191 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.191 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.191 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdReqDTO; -2024-09-20 17:47:23.191 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.191 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |find| -2024-09-20 17:47:23.191 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.191 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.192 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?Ϣ?, name: ӿӦ?Ϣ?, schema: {} models -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?Ϣ? -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.193 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptType -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.194 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptType' renamed to 'deptType' -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptType to model -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property parentId -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'parentId' renamed to 'parentId' -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property parentId to model -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptName -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptName' renamed to 'deptName' -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptName to model -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.196 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptCode -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptCode' renamed to 'deptCode' -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptCode to model -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; for parameter data -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.197 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 6 properties. Properties found deptCode, deptName, deptType, id, parentId, sort -2024-09-20 17:47:23.198 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ϣ -2024-09-20 17:47:23.198 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ, name: ͨ, schema: {} models -2024-09-20 17:47:23.198 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨ -2024-09-20 17:47:23.198 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?Ϣ? -2024-09-20 17:47:23.198 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method find -2024-09-20 17:47:23.198 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?Ϣ? -2024-09-20 17:47:23.198 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method find -2024-09-20 17:47:23.198 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findUsingPOST_4 -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.199 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptType -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptType -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptType' renamed to 'deptType' -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptType to model -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptType -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptType -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptType -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptType -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property parentId -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParentId -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'parentId' renamed to 'parentId' -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property parentId to model -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParentId -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParentId -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParentId -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParentId -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptName -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptName -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptName' renamed to 'deptName' -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptName to model -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptName -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptName -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptName -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptName -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptCode -2024-09-20 17:47:23.200 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptCode -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptCode' renamed to 'deptCode' -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptCode to model -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptCode -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptCode -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptCode -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDeptCode -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 6 properties. Properties found deptCode, deptName, deptType, id, parentId, sort -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ϣ, name: Ϣ, schema: {} models -2024-09-20 17:47:23.201 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.202 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.203 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?List?Ϣ??, name: ӿӦ?List?Ϣ??, schema: {} models -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?List?Ϣ?? -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Ljava/util/List; -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Ljava/util/List; -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter data -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.204 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 6 properties. Properties found deptCode, deptName, deptType, id, parentId, sort -2024-09-20 17:47:23.205 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?List?Ϣ?? -2024-09-20 17:47:23.205 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method list -2024-09-20 17:47:23.205 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?List?Ϣ?? -2024-09-20 17:47:23.205 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method list -2024-09-20 17:47:23.205 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_1 -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.206 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:23.207 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?Ϣ?, name: ҳ?Ϣ?, schema: {} models -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?Ϣ? -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; for parameter params -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 6 properties. Properties found deptCode, deptName, deptType, id, parentId, sort -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.208 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.209 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?ṹӦ??, name: ӿӦ?IPage?ṹӦ??, schema: {} models -2024-09-20 17:47:23.210 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?ṹӦ?? -2024-09-20 17:47:23.210 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.210 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.210 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.210 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.211 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.211 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.211 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.211 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.211 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.211 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.211 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.211 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptType -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptType' renamed to 'deptType' -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptType to model -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptType -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property parentId -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'parentId' renamed to 'parentId' -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property parentId to model -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getParentId -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptName -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptName' renamed to 'deptName' -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptName to model -2024-09-20 17:47:23.212 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptName -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property deptCode -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'deptCode' renamed to 'deptCode' -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property deptCode to model -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDeptCode -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property children -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChildren -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'children' renamed to 'children' -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property children to model -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChildren -2024-09-20 17:47:23.213 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChildren -2024-09-20 17:47:23.214 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChildren -2024-09-20 17:47:23.214 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getChildren -2024-09-20 17:47:23.214 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter children -2024-09-20 17:47:23.214 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.214 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.214 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.215 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.216 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.217 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter children -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter children -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter children -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.218 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.224 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.225 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found children, deptCode, deptName, deptType, id, parentId, sort -2024-09-20 17:47:23.225 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.225 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ṹӦ -2024-09-20 17:47:23.225 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?ṹӦ? -2024-09-20 17:47:23.226 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?ṹӦ?? -2024-09-20 17:47:23.226 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:23.226 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?ṹӦ?? -2024-09-20 17:47:23.227 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:23.227 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pagingUsingPOST_4 -2024-09-20 17:47:23.227 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.227 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/depart/dto/SysDepartDTO; -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ϣ, name: Ϣ, schema: {} models -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method save -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.228 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method save -2024-09-20 17:47:23.229 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_6 -2024-09-20 17:47:23.229 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.229 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |sort| -2024-09-20 17:47:23.229 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/depart/dto/request/DepartSortReqDTO; -2024-09-20 17:47:23.229 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |sort| -2024-09-20 17:47:23.229 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |sort| -2024-09-20 17:47:23.229 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 2 properties. Properties found id, sort -2024-09-20 17:47:23.230 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: , name: , schema: {} models -2024-09-20 17:47:23.231 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key -2024-09-20 17:47:23.231 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.231 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method sort -2024-09-20 17:47:23.231 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.231 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method sort -2024-09-20 17:47:23.231 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |tree| -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |tree| -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |tree| -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.232 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.233 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.234 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?List?ṹӦ??, name: ӿӦ?List?ṹӦ??, schema: {} models -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?List?ṹӦ?? -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Ljava/util/List; -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Ljava/util/List; -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter children -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter data -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.235 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.236 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter children -2024-09-20 17:47:23.236 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.236 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO; -2024-09-20 17:47:23.236 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.236 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found children, deptCode, deptName, deptType, id, parentId, sort -2024-09-20 17:47:23.236 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?List?ṹӦ?? -2024-09-20 17:47:23.237 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method tree -2024-09-20 17:47:23.237 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?List?ṹӦ?? -2024-09-20 17:47:23.237 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method tree -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |list| -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.238 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.239 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?List?ɫ??, name: ӿӦ?List?ɫ??, schema: {} models -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?List?ɫ?? -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Ljava/util/List; -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Ljava/util/List; -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.240 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property roleName -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleName -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'roleName' renamed to 'roleName' -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property roleName to model -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleName -2024-09-20 17:47:23.241 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleName -2024-09-20 17:47:23.242 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleName -2024-09-20 17:47:23.242 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleName -2024-09-20 17:47:23.242 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter data -2024-09-20 17:47:23.242 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.242 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.242 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.242 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 2 properties. Properties found id, roleName -2024-09-20 17:47:23.242 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ɫ -2024-09-20 17:47:23.243 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?List?ɫ?? -2024-09-20 17:47:23.243 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method list -2024-09-20 17:47:23.243 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?List?ɫ?? -2024-09-20 17:47:23.243 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method list -2024-09-20 17:47:23.243 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingPOST_2 -2024-09-20 17:47:23.243 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.243 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.243 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:23.243 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.244 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.244 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.244 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.244 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.244 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.245 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?ɫ??, name: ӿӦ?IPage?ɫ??, schema: {} models -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?ɫ?? -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.246 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.247 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:23.248 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.249 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 2 properties. Properties found id, roleName -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?ɫ? -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.250 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.251 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?ɫ?, name: ҳ?ɫ?, schema: {} models -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?ɫ? -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.252 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property roleName -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleName -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'roleName' renamed to 'roleName' -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property roleName to model -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleName -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleName -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleName -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleName -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; for parameter params -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/sys/user/dto/SysRoleDTO; -2024-09-20 17:47:23.253 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 2 properties. Properties found id, roleName -2024-09-20 17:47:23.254 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?ɫ?? -2024-09-20 17:47:23.254 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:23.254 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?ɫ?? -2024-09-20 17:47:23.255 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:23.255 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pagingUsingPOST_5 -2024-09-20 17:47:23.255 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.255 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.256 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdsReqDTO; -2024-09-20 17:47:23.256 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.256 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |edit| -2024-09-20 17:47:23.256 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.256 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ -2024-09-20 17:47:23.256 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ɾ, name: ɾ, schema: {} models -2024-09-20 17:47:23.256 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ɾ -2024-09-20 17:47:23.256 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.257 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.257 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method edit -2024-09-20 17:47:23.257 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.257 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method edit -2024-09-20 17:47:23.257 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPOST_5 -2024-09-20 17:47:23.258 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.258 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |info| -2024-09-20 17:47:23.258 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |info| -2024-09-20 17:47:23.259 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |info| -2024-09-20 17:47:23.259 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.259 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.259 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method info -2024-09-20 17:47:23.260 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.260 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method info -2024-09-20 17:47:23.260 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.260 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |login| -2024-09-20 17:47:23.260 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/user/dto/request/SysUserLoginReqDTO; -2024-09-20 17:47:23.260 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |login| -2024-09-20 17:47:23.260 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |login| -2024-09-20 17:47:23.261 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.261 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.261 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.261 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.261 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.261 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.261 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.261 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.262 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?û¼Ӧ?, name: ӿӦ?û¼Ӧ?, schema: {} models -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?û¼Ӧ? -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/user/dto/response/SysUserLoginDTO; -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/user/dto/response/SysUserLoginDTO; -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userName -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.263 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userName' renamed to 'userName' -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userName to model -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property realName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'realName' renamed to 'realName' -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property realName to model -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property roleIds -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'roleIds' renamed to 'roleIds' -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property roleIds to model -2024-09-20 17:47:23.264 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.265 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property roles -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoles -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'roles' renamed to 'roles' -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property roles to model -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoles -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoles -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoles -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoles -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property token -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getToken -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'token' renamed to 'token' -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property token to model -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getToken -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getToken -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getToken -2024-09-20 17:47:23.266 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getToken -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter roles -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/sys/user/dto/response/SysUserLoginDTO; for parameter data -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/sys/user/dto/response/SysUserLoginDTO; -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter roles -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, departId, id, realName, roleIds, roles, state, token, updateTime, userName -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.267 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key û¼Ӧ -2024-09-20 17:47:23.268 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property username -2024-09-20 17:47:23.268 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUsername -2024-09-20 17:47:23.268 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'username' renamed to 'username' -2024-09-20 17:47:23.268 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property username to model -2024-09-20 17:47:23.268 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUsername -2024-09-20 17:47:23.268 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUsername -2024-09-20 17:47:23.268 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUsername -2024-09-20 17:47:23.268 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUsername -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property password -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'password' renamed to 'password' -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property password to model -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 2 properties. Properties found password, username -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ա¼, name: Ա¼, schema: {} models -2024-09-20 17:47:23.269 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ա¼ -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?û¼Ӧ? -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method login -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?û¼Ӧ? -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method login -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |logout| -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |logout| -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |logout| -2024-09-20 17:47:23.270 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.271 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.271 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method logout -2024-09-20 17:47:23.271 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.272 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method logout -2024-09-20 17:47:23.272 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.272 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.272 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:23.272 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.272 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.273 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.274 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?û??, name: ӿӦ?IPage?û??, schema: {} models -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?û?? -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.275 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userName' renamed to 'userName' -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userName to model -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property realName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'realName' renamed to 'realName' -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property realName to model -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property password -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassword -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'password' renamed to 'password' -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property password to model -2024-09-20 17:47:23.276 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassword -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassword -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassword -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassword -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property salt -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSalt -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'salt' renamed to 'salt' -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property salt to model -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSalt -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSalt -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSalt -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSalt -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property roleIds -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'roleIds' renamed to 'roleIds' -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property roleIds to model -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRoleIds -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.277 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getDepartId -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.279 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getState -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.280 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:23.281 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.282 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.283 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, departId, id, password, realName, roleIds, salt, state, updateTime, userName -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key û -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?û? -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.284 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.285 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?û?, name: ҳ?û?, schema: {} models -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?û? -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.286 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userName -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userName' renamed to 'userName' -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userName to model -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.287 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property realName -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'realName' renamed to 'realName' -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property realName to model -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property password -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'password' renamed to 'password' -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property password to model -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.288 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property salt -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSalt -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'salt' renamed to 'salt' -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property salt to model -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSalt -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSalt -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSalt -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSalt -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property roleIds -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleIds -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'roleIds' renamed to 'roleIds' -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property roleIds to model -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleIds -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleIds -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleIds -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoleIds -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.289 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property state -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'state' renamed to 'state' -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property state to model -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.290 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.291 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.291 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setState -2024-09-20 17:47:23.291 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; for parameter params -2024-09-20 17:47:23.291 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.291 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, departId, id, password, realName, roleIds, salt, state, updateTime, userName -2024-09-20 17:47:23.292 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?û?? -2024-09-20 17:47:23.292 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:23.292 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?û?? -2024-09-20 17:47:23.292 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:23.292 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pagingUsingPOST_6 -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |quick| -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |quick| -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |quick| -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, departId, id, password, realName, roleIds, salt, state, updateTime, userName -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: û, name: û, schema: {} models -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?û¼Ӧ?, name: ӿӦ?û¼Ӧ?, schema: {} models -2024-09-20 17:47:23.293 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, departId, id, realName, roleIds, roles, state, token, updateTime, userName -2024-09-20 17:47:23.295 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.295 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?û¼Ӧ? -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method quick -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?û¼Ӧ? -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method quick -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |reg| -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |reg| -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |reg| -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: û, name: û, schema: {} models -2024-09-20 17:47:23.296 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?û¼Ӧ?, name: ӿӦ?û¼Ӧ?, schema: {} models -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, departId, id, realName, roleIds, roles, state, token, updateTime, userName -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?û¼Ӧ? -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method reg -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?û¼Ӧ? -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method reg -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.297 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/user/dto/request/SysUserSaveReqDTO; -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |save| -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.298 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userName -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userName' renamed to 'userName' -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userName to model -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserName -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property avatar -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAvatar -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'avatar' renamed to 'avatar' -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property avatar to model -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAvatar -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAvatar -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAvatar -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setAvatar -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property realName -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'realName' renamed to 'realName' -2024-09-20 17:47:23.299 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property realName to model -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property password -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'password' renamed to 'password' -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property password to model -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassword -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property departId -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'departId' renamed to 'departId' -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property departId to model -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setDepartId -2024-09-20 17:47:23.300 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property roles -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoles -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'roles' renamed to 'roles' -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property roles to model -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoles -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoles -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoles -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRoles -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found avatar, departId, id, password, realName, roles, userName -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ա, name: Ա, schema: {} models -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ա -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter roles -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Ljava/lang/String; -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Marking base type Ljava/lang/String; as seen -2024-09-20 17:47:23.301 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.302 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.302 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method save -2024-09-20 17:47:23.302 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.302 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method save -2024-09-20 17:47:23.302 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_7 -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |state| -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseStateReqDTO; -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |state| -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |state| -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ͨ״̬, name: ͨ״̬, schema: {} models -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨ״̬ -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method state -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method state -2024-09-20 17:47:23.303 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: stateUsingPOST_1 -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |update| -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/sys/user/dto/SysUserDTO; -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |update| -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |update| -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: û, name: û, schema: {} models -2024-09-20 17:47:23.303 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.305 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.305 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method update -2024-09-20 17:47:23.305 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.305 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method update -2024-09-20 17:47:23.305 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |delete| -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/BaseIdsReqDTO; -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |delete| -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |delete| -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ, name: ӿӦ, schema: {} models -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ɾ, name: ɾ, schema: {} models -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ɾ -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method delete -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ -2024-09-20 17:47:23.306 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method delete -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |nextQu| -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |nextQu| -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |nextQu| -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.307 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:23.308 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setQuId -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property wrongCount -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setWrongCount -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'wrongCount' renamed to 'wrongCount' -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property wrongCount to model -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setWrongCount -2024-09-20 17:47:23.309 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setWrongCount -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setWrongCount -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setWrongCount -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.310 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSort -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 9 properties. Properties found createTime, examId, id, quId, sort, title, updateTime, userId, wrongCount -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: Ȿ, name: Ȿ, schema: {} models -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Ȿ -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?ͨӦ?, name: ӿӦ?ͨӦ?, schema: {} models -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?ͨӦ? -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 1 properties. Properties found id -2024-09-20 17:47:23.311 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ͨӦ -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?ͨӦ? -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method nextQu -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?ͨӦ? -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method nextQu -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.312 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.313 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?Ȿ??, name: ӿӦ?IPage?Ȿ??, schema: {} models -2024-09-20 17:47:23.314 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?Ȿ?? -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:23.315 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property quId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'quId' renamed to 'quId' -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property quId to model -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getQuId -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.316 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property wrongCount -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getWrongCount -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'wrongCount' renamed to 'wrongCount' -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property wrongCount to model -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getWrongCount -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getWrongCount -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getWrongCount -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getWrongCount -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property sort -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'sort' renamed to 'sort' -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property sort to model -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.317 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSort -2024-09-20 17:47:23.318 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.319 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.319 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.319 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.319 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.319 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.319 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.319 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.319 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.320 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.321 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.322 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 9 properties. Properties found createTime, examId, id, quId, sort, title, updateTime, userId, wrongCount -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?Ȿ? -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.323 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.324 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?Ȿ?, name: ҳ?Ȿ?, schema: {} models -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?Ȿ? -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/user/book/dto/UserBookDTO; for parameter params -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/user/book/dto/UserBookDTO; -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 9 properties. Properties found createTime, examId, id, quId, sort, title, updateTime, userId, wrongCount -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?Ȿ?? -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:23.325 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?Ȿ?? -2024-09-20 17:47:23.326 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:23.326 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pagingUsingPOST_7 -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |myPaging| -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |myPaging| -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |myPaging| -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.327 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCurrent -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setSize -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property params -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'params' renamed to 'params' -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property params to model -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setParams -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property orderBy -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.328 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'orderBy' renamed to 'orderBy' -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property orderBy to model -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setOrderBy -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found current, orderBy, params, size -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?Լ¼?, name: ҳ?Լ¼?, schema: {} models -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ҳ?Լ¼? -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/user/exam/dto/request/UserExamReqDTO; -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/user/exam/dto/request/UserExamReqDTO; -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.329 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUserId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setExamId -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property tryCount -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTryCount -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'tryCount' renamed to 'tryCount' -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property tryCount to model -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTryCount -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTryCount -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTryCount -2024-09-20 17:47:23.330 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTryCount -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property maxScore -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMaxScore -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'maxScore' renamed to 'maxScore' -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property maxScore to model -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMaxScore -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMaxScore -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMaxScore -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setMaxScore -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property passed -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassed -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'passed' renamed to 'passed' -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property passed to model -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassed -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassed -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassed -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setPassed -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setCreateTime -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.331 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setUpdateTime -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setTitle -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property realName -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'realName' renamed to 'realName' -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property realName to model -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped setter for member setRealName -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/yf/exam/modules/user/exam/dto/request/UserExamReqDTO; for parameter params -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/yf/exam/modules/user/exam/dto/request/UserExamReqDTO; -2024-09-20 17:47:23.332 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, examId, id, maxScore, passed, realName, title, tryCount, updateTime, userId -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key Լ¼ -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property msg -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'msg' renamed to 'msg' -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property msg to model -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMsg -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property code -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'code' renamed to 'code' -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property code to model -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.333 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCode -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property data -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'data' renamed to 'data' -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property data to model -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getData -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property success -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'success' renamed to 'success' -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property success to model -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSuccess -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 4 properties. Properties found code, data, msg, success -2024-09-20 17:47:23.334 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?Լ¼??, name: ӿӦ?IPage?Լ¼??, schema: {} models -2024-09-20 17:47:23.335 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key ӿӦ?IPage?Լ¼?? -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/user/exam/dto/response/UserExamRespDTO; -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/user/exam/dto/response/UserExamRespDTO; -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property id -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'id' renamed to 'id' -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property id to model -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getId -2024-09-20 17:47:23.336 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property userId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'userId' renamed to 'userId' -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property userId to model -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUserId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property examId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'examId' renamed to 'examId' -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property examId to model -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getExamId -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property tryCount -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTryCount -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'tryCount' renamed to 'tryCount' -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property tryCount to model -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTryCount -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTryCount -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTryCount -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTryCount -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property maxScore -2024-09-20 17:47:23.337 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMaxScore -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'maxScore' renamed to 'maxScore' -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property maxScore to model -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMaxScore -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMaxScore -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMaxScore -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getMaxScore -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property passed -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassed -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'passed' renamed to 'passed' -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property passed to model -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassed -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassed -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassed -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPassed -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property createTime -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'createTime' renamed to 'createTime' -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property createTime to model -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCreateTime -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property updateTime -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'updateTime' renamed to 'updateTime' -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property updateTime to model -2024-09-20 17:47:23.338 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getUpdateTime -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property title -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'title' renamed to 'title' -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property title to model -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTitle -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property realName -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'realName' renamed to 'realName' -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property realName to model -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRealName -2024-09-20 17:47:23.339 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property size -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'size' renamed to 'size' -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property size to model -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getSize -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property records -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'records' renamed to 'records' -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property records to model -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getRecords -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property current -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'current' renamed to 'current' -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property current to model -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getCurrent -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property pages -2024-09-20 17:47:23.340 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'pages' renamed to 'pages' -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property pages to model -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getPages -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property hitCount -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'hitCount' renamed to 'hitCount' -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property hitCount to model -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isHitCount -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property total -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'total' renamed to 'total' -2024-09-20 17:47:23.341 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property total to model -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member getTotal -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Reading property searchCount -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] p.ObjectMapperBeanPropertyNamingStrategy : Name 'searchCount' renamed to 'searchCount' -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.p.OptimizedModelPropertiesProvider : Adding property searchCount to model -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.property.bean.BeanModelProperty : Evaluating unwrapped getter for member isSearchCount -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/user/exam/dto/response/UserExamRespDTO; -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/user/exam/dto/response/UserExamRespDTO; -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Lcom/baomidou/mybatisplus/core/metadata/IPage; for parameter data -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for type Lcom/baomidou/mybatisplus/core/metadata/IPage; -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type for parameter Lcom/yf/exam/modules/user/exam/dto/response/UserExamRespDTO; -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for parameter Lcom/yf/exam/modules/user/exam/dto/response/UserExamRespDTO; -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding type Ljava/util/List; for parameter records -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Adding collectionElement type Lcom/yf/exam/modules/user/exam/dto/response/UserExamRespDTO; -2024-09-20 17:47:23.342 DEBUG 22604 --- [main] s.d.s.DefaultModelDependencyProvider : Recursively resolving dependencies for collectionElement type Lcom/yf/exam/modules/user/exam/dto/response/UserExamRespDTO; -2024-09-20 17:47:23.343 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.343 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, examId, id, maxScore, passed, realName, title, tryCount, updateTime, userId -2024-09-20 17:47:23.343 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.343 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Adding a new model with key IPage?Լ¼? -2024-09-20 17:47:23.343 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?Լ¼?? -2024-09-20 17:47:23.343 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method myPaging -2024-09-20 17:47:23.343 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?Լ¼?? -2024-09-20 17:47:23.343 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method myPaging -2024-09-20 17:47:23.344 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: myPagingUsingPOST_1 -2024-09-20 17:47:23.344 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding return parameter of type Lcom/yf/exam/core/api/ApiRest; -2024-09-20 17:47:23.344 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.344 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Adding input parameter of type Lcom/yf/exam/core/api/dto/PagingReqDTO; -2024-09-20 17:47:23.344 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationModelsProvider : Finished reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.344 DEBUG 22604 --- [main] s.d.s.r.o.SwaggerOperationModelsProvider : Reading parameters models for handlerMethod |paging| -2024-09-20 17:47:23.344 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ҳ?Լ¼?, name: ҳ?Լ¼?, schema: {} models -2024-09-20 17:47:23.345 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, examId, id, maxScore, passed, realName, title, tryCount, updateTime, userId -2024-09-20 17:47:23.345 DEBUG 22604 --- [main] s.d.spring.web.scanners.ApiModelReader : Generated parameter model id: ӿӦ?IPage?Լ¼??, name: ӿӦ?IPage?Լ¼??, schema: {} models -2024-09-20 17:47:23.345 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 7 properties. Properties found current, hitCount, pages, records, searchCount, size, total -2024-09-20 17:47:23.345 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Inferred 10 properties. Properties found createTime, examId, id, maxScore, passed, realName, title, tryCount, updateTime, userId -2024-09-20 17:47:23.345 DEBUG 22604 --- [main] s.d.schema.DefaultModelProvider : Skipping model of type Ljava/util/List; as its either a container type, map, enum or base type, or its already been handled -2024-09-20 17:47:23.345 DEBUG 22604 --- [main] s.d.s.w.r.o.OperationResponseClassReader : Setting spring response class to: ӿӦ?IPage?Լ¼?? -2024-09-20 17:47:23.346 DEBUG 22604 --- [main] s.d.s.r.o.VendorExtensionsReader : Extension count 1 for method paging -2024-09-20 17:47:23.346 DEBUG 22604 --- [main] .r.o.SwaggerOperationResponseClassReader : Setting response class to:ӿӦ?IPage?Լ¼?? -2024-09-20 17:47:23.346 DEBUG 22604 --- [main] s.d.s.r.operation.OperationAuthReader : Authorization count 0 for method paging -2024-09-20 17:47:23.346 INFO 22604 --- [main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pagingUsingPOST_8 -2024-09-20 17:47:23.352 DEBUG 22604 --- [main] o.s.c.support.DefaultLifecycleProcessor : Successfully started bean 'documentationPluginsBootstrapper' -2024-09-20 17:47:23.352 INFO 22604 --- [main] o.s.s.quartz.SchedulerFactoryBean : Starting Quartz Scheduler now -2024-09-20 17:47:23.355 DEBUG 22604 --- [main] o.q.i.jdbcjobstore.StdRowLockSemaphore : Lock 'STATE_ACCESS' is desired by: main -2024-09-20 17:47:23.504 DEBUG 22604 --- [main] o.q.i.jdbcjobstore.StdRowLockSemaphore : Lock 'STATE_ACCESS' is being obtained: main -2024-09-20 17:47:23.517 DEBUG 22604 --- [main] o.q.i.jdbcjobstore.StdRowLockSemaphore : Lock 'STATE_ACCESS' given to: main -2024-09-20 17:47:23.519 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : Adding TriggerPersistenceDelegate of type: org.quartz.impl.jdbcjobstore.SimpleTriggerPersistenceDelegate -2024-09-20 17:47:23.519 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : Adding TriggerPersistenceDelegate of type: org.quartz.impl.jdbcjobstore.CronTriggerPersistenceDelegate -2024-09-20 17:47:23.520 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : Adding TriggerPersistenceDelegate of type: org.quartz.impl.jdbcjobstore.CalendarIntervalTriggerPersistenceDelegate -2024-09-20 17:47:23.521 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : Adding TriggerPersistenceDelegate of type: org.quartz.impl.jdbcjobstore.DailyTimeIntervalTriggerPersistenceDelegate -2024-09-20 17:47:23.597 DEBUG 22604 --- [main] o.q.i.jdbcjobstore.StdRowLockSemaphore : Lock 'TRIGGER_ACCESS' is desired by: main -2024-09-20 17:47:23.599 DEBUG 22604 --- [main] o.q.i.jdbcjobstore.StdRowLockSemaphore : Lock 'TRIGGER_ACCESS' is being obtained: main -2024-09-20 17:47:23.600 DEBUG 22604 --- [main] o.q.i.jdbcjobstore.StdRowLockSemaphore : Lock 'TRIGGER_ACCESS' given to: main -2024-09-20 17:47:23.600 INFO 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: detected 1 failed or restarted instances. -2024-09-20 17:47:23.600 INFO 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: Scanning for instance "lang1726825594694"'s failed in-progress jobs. -2024-09-20 17:47:23.602 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: ......Freed 0 acquired trigger(s). -2024-09-20 17:47:23.602 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: ......Deleted 0 complete triggers(s). -2024-09-20 17:47:23.603 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: ......Scheduled 0 recoverable job(s) for recovery. -2024-09-20 17:47:23.603 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: ......Cleaned-up 0 other failed job(s). -2024-09-20 17:47:23.605 DEBUG 22604 --- [main] o.q.i.jdbcjobstore.StdRowLockSemaphore : Lock 'TRIGGER_ACCESS' returned by: main -2024-09-20 17:47:23.605 DEBUG 22604 --- [main] o.q.i.jdbcjobstore.StdRowLockSemaphore : Lock 'STATE_ACCESS' returned by: main -2024-09-20 17:47:23.605 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: Check-in complete. -2024-09-20 17:47:23.606 DEBUG 22604 --- [main] o.s.s.quartz.LocalDataSourceJobStore : JobStore background threads started (as scheduler was started). -2024-09-20 17:47:23.606 INFO 22604 --- [main] org.quartz.core.QuartzScheduler : Scheduler examScheduler_$_lang1726825641205 started. -2024-09-20 17:47:23.606 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_MisfireHandler] o.s.s.quartz.LocalDataSourceJobStore : MisfireHandler: scanning for misfires... -2024-09-20 17:47:23.606 DEBUG 22604 --- [main] o.s.c.support.DefaultLifecycleProcessor : Successfully started bean 'quartzScheduler' -2024-09-20 17:47:23.614 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_MisfireHandler] o.s.s.quartz.LocalDataSourceJobStore : Found 0 triggers that missed their scheduled fire-time. -2024-09-20 17:47:23.617 DEBUG 22604 --- [examScheduler_QuartzSchedulerThread] org.quartz.core.QuartzSchedulerThread : batch acquisition of 0 triggers -2024-09-20 17:47:23.619 DEBUG 22604 --- [main] ConditionEvaluationReportLoggingListener : - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.context.annotation.EnableAspectJAutoProxy', 'org.aspectj.lang.annotation.Aspect', 'org.aspectj.lang.reflect.Advice', 'org.aspectj.weaver.AnnotatedElement' (OnClassCondition) - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - CodecsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.codec.CodecConfigurer' (OnClassCondition) - - CodecsAutoConfiguration.JacksonCodecConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - CodecsAutoConfiguration.JacksonCodecConfiguration#jacksonCodecCustomizer matched: - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - DataSourceConfiguration.Generic matched: - - @ConditionalOnProperty (spring.datasource.type) matched (OnPropertyCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.DataSourceTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a primary bean from beans 'dataSource' (OnBeanCondition) - - DataSourceTransactionManagerAutoConfiguration.DataSourceTransactionManagerConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet; types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - DruidDataSourceAutoConfigure matched: - - @ConditionalOnClass found required class 'com.alibaba.druid.pool.DruidDataSource' (OnClassCondition) - - DruidDataSourceAutoConfigure#dataSource matched: - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.DefaultErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.http.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.http.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a primary bean from beans 'dataSource' (OnBeanCondition) - - JdbcTemplateAutoConfiguration.JdbcTemplateConfiguration#jdbcTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration.NamedParameterJdbcTemplateConfiguration#namedParameterJdbcTemplate matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a primary bean from beans 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MybatisPlusAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.ibatis.session.SqlSessionFactory', 'org.mybatis.spring.SqlSessionFactoryBean' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a primary bean from beans 'dataSource' (OnBeanCondition) - - MybatisPlusAutoConfiguration#sqlSessionFactory matched: - - @ConditionalOnMissingBean (types: org.apache.ibatis.session.SqlSessionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MybatisPlusAutoConfiguration#sqlSessionTemplate matched: - - @ConditionalOnMissingBean (types: org.mybatis.spring.SqlSessionTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MybatisPlusLanguageDriverAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.apache.ibatis.scripting.LanguageDriver' (OnClassCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - QuartzAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.quartz.Scheduler', 'org.springframework.scheduling.quartz.SchedulerFactoryBean', 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - QuartzAutoConfiguration#quartzScheduler matched: - - @ConditionalOnMissingBean (types: org.springframework.scheduling.quartz.SchedulerFactoryBean; SearchStrategy: all) did not find any beans (OnBeanCondition) - - QuartzAutoConfiguration.JdbcStoreTypeConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a primary bean from beans 'dataSource' (OnBeanCondition) - - QuartzAutoConfiguration.JdbcStoreTypeConfiguration#quartzDataSourceInitializer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.quartz.QuartzDataSourceInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'javax.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ShiroAnnotationProcessorAutoConfiguration matched: - - @ConditionalOnProperty (shiro.annotations.enabled) matched (OnPropertyCondition) - - ShiroAutoConfiguration matched: - - @ConditionalOnProperty (shiro.enabled) matched (OnPropertyCondition) - - ShiroBeanAutoConfiguration matched: - - @ConditionalOnProperty (shiro.enabled) matched (OnPropertyCondition) - - ShiroBeanAutoConfiguration#eventBus matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.event.EventBus; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroBeanAutoConfiguration#shiroEventBusAwareBeanPostProcessor matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.spring.ShiroEventBusBeanPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (shiro.web.enabled) matched (OnPropertyCondition) - - ShiroWebAutoConfiguration#authenticationStrategy matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.authc.pam.AuthenticationStrategy; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#rememberMeCookieTemplate matched: - - @ConditionalOnMissingBean (names: rememberMeCookieTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#rememberMeManager matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.RememberMeManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#sessionCookieTemplate matched: - - @ConditionalOnMissingBean (names: sessionCookieTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#sessionDAO matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.session.mgt.eis.SessionDAO; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#sessionFactory matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.session.mgt.SessionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#sessionStorageEvaluator matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.SessionStorageEvaluator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#shiroFilterChainDefinition matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.spring.web.config.ShiroFilterChainDefinition; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#shiroUrlPathHelper matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.spring.web.ShiroUrlPathHelper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#subjectDAO matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.SubjectDAO; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebAutoConfiguration#subjectFactory matched: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.SubjectFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebFilterConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (shiro.web.enabled) matched (OnPropertyCondition) - - ShiroWebFilterConfiguration#filterShiroFilterRegistrationBean matched: - - @ConditionalOnMissingBean (names: filterShiroFilterRegistrationBean; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebFilterConfiguration#globalFilters matched: - - @ConditionalOnMissingBean (types: java.util.List; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ShiroWebMvcAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (shiro.web.enabled) matched (OnPropertyCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - Swagger2DocumentationConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutionAutoConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingAutoConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a primary bean from beans 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'javax.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/javax.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: javax.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter matched: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.HiddenHttpMethodFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver; types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter.FaviconConfiguration matched: - - @ConditionalOnProperty (spring.mvc.favicon.enabled) matched (OnPropertyCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerJpaDependencyConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.driver.core.Cluster' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.driver.core.Cluster' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.driver.core.Cluster' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.driver.core.Session' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudServiceConnectorsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.cloud.config.java.CloudScanConfiguration' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.couchbase.client.java.Bucket', 'com.couchbase.client.spring.cache.CouchbaseCacheManager' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource found supported pooled data source (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) found beans of type 'javax.sql.DataSource' dataSource (OnBeanCondition) - Matched: - - AnyNestedCondition 2 matched 0 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) matched (DataSourceAutoConfiguration.PooledDataSourceCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Hikari: - Did not match: - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) found different value in property 'spring.datasource.type' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DruidFilterConfiguration#commonsLogFilter: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.commons-log.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidFilterConfiguration#configFilter: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.config.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidFilterConfiguration#encodingConvertFilter: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.encoding.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidFilterConfiguration#log4j2Filter: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.log4j2.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidFilterConfiguration#log4jFilter: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.log4j.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidFilterConfiguration#slf4jLogFilter: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.slf4j.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidFilterConfiguration#statFilter: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.stat.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidFilterConfiguration#wallConfig: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.wall.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidFilterConfiguration#wallFilter: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.filter.wall.enabled) did not find property 'enabled' (OnPropertyCondition) - - DruidSpringAopConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.aop-patterns) did not find property 'spring.datasource.druid.aop-patterns' (OnPropertyCondition) - - DruidStatViewServletConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.stat-view-servlet.enabled=true) did not find property 'spring.datasource.druid.stat-view-servlet.enabled' (OnPropertyCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - DruidWebStatFilterConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.druid.web-stat-filter.enabled=true) did not find property 'spring.datasource.druid.web-stat-filter.enabled' (OnPropertyCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - EhCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'net.sf.ehcache.Cache' (OnClassCondition) - - ElasticsearchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.Client' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.Client' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.Client' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedMongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClient' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - H2ConsoleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.h2.server.web.WebServlet' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.core.HazelcastInstance', 'com.hazelcast.spring.cache.HazelcastCacheManager' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HibernateJpaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.persistence.EntityManager' (OnClassCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.Resource' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonAutoConfiguration.JodaDateTimeJacksonConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.joda.time.DateTime', 'com.fasterxml.jackson.datatype.joda.ser.DateTimeSerializer', 'com.fasterxml.jackson.datatype.joda.cfg.JacksonJodaDateFormat' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.JdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JestAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.searchbox.client.JestClient' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.jms.Message' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition) - - JtaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.transaction.Transaction' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.activation.MimeType' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mail.test-connection) did not find property 'test-connection' (OnPropertyCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClient' (OnClassCondition) - - MultipartAutoConfiguration#multipartConfigElement: - Did not match: - - @ConditionalOnMissingBean (types: javax.servlet.MultipartConfigElement,org.springframework.web.multipart.commons.CommonsMultipartResolver; SearchStrategy: all) found beans of type 'javax.servlet.MultipartConfigElement' multipartConfigElement (OnBeanCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - MybatisPlusAutoConfiguration.MapperScannerRegistrarNotFoundConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: org.mybatis.spring.mapper.MapperFactoryBean,org.mybatis.spring.mapper.MapperScannerConfigurer; SearchStrategy: all) found beans of type 'org.mybatis.spring.mapper.MapperScannerConfigurer' com.yf.exam.config.MybatisConfig#MapperScannerRegistrar#0 (OnBeanCondition) - - MybatisPlusLanguageDriverAutoConfiguration.FreeMarkerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver', 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig' (OnClassCondition) - - MybatisPlusLanguageDriverAutoConfiguration.LegacyFreeMarkerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver' (OnClassCondition) - - MybatisPlusLanguageDriverAutoConfiguration.ThymeleafConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver' (OnClassCondition) - - MybatisPlusLanguageDriverAutoConfiguration.VelocityConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.velocity.VelocityLanguageDriver', 'org.mybatis.scripting.velocity.VelocityLanguageDriverConfig' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.ogm.session.SessionFactory' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.ogm.session.Neo4jSession' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.jwt.JwtDecoder' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorCoreAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - RestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatcherProviderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShiroAnnotationProcessorAutoConfiguration#authorizationAttributeSourceAdvisor: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor; SearchStrategy: all) found beans of type 'org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor' authorizationAttributeSourceAdvisor (OnBeanCondition) - - ShiroAnnotationProcessorAutoConfiguration#defaultAdvisorAutoProxyCreator: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator; SearchStrategy: all) found beans of type 'org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator' defaultAdvisorAutoProxyCreator (OnBeanCondition) - - ShiroAutoConfiguration#authenticationStrategy: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.authc.pam.AuthenticationStrategy; SearchStrategy: all) found beans of type 'org.apache.shiro.authc.pam.AuthenticationStrategy' authenticationStrategy (OnBeanCondition) - - ShiroAutoConfiguration#authenticator: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.authc.Authenticator; SearchStrategy: all) found beans of type 'org.apache.shiro.authc.Authenticator' securityManager (OnBeanCondition) - - ShiroAutoConfiguration#authorizer: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.authz.Authorizer; SearchStrategy: all) found beans of type 'org.apache.shiro.authz.Authorizer' securityManager, shiroRealm (OnBeanCondition) - - ShiroAutoConfiguration#iniClasspathRealm: - Did not match: - - @ConditionalOnResource did not find resource 'classpath:shiro.ini' (OnResourceCondition) - - ShiroAutoConfiguration#iniMetaInfClasspathRealm: - Did not match: - - @ConditionalOnResource did not find resource 'classpath:META-INF/shiro.ini' (OnResourceCondition) - - ShiroAutoConfiguration#missingRealm: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.realm.Realm; SearchStrategy: all) found beans of type 'org.apache.shiro.realm.Realm' shiroRealm (OnBeanCondition) - - ShiroAutoConfiguration#securityManager: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.SessionsSecurityManager; SearchStrategy: all) found beans of type 'org.apache.shiro.mgt.SessionsSecurityManager' securityManager (OnBeanCondition) - - ShiroAutoConfiguration#sessionDAO: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.session.mgt.eis.SessionDAO; SearchStrategy: all) found beans of type 'org.apache.shiro.session.mgt.eis.SessionDAO' sessionDAO (OnBeanCondition) - - ShiroAutoConfiguration#sessionFactory: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.session.mgt.SessionFactory; SearchStrategy: all) found beans of type 'org.apache.shiro.session.mgt.SessionFactory' sessionFactory (OnBeanCondition) - - ShiroAutoConfiguration#sessionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.session.mgt.SessionManager; SearchStrategy: all) found beans of type 'org.apache.shiro.session.mgt.SessionManager' securityManager (OnBeanCondition) - - ShiroAutoConfiguration#sessionStorageEvaluator: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.SessionStorageEvaluator; SearchStrategy: all) found beans of type 'org.apache.shiro.mgt.SessionStorageEvaluator' sessionStorageEvaluator (OnBeanCondition) - - ShiroAutoConfiguration#subjectDAO: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.SubjectDAO; SearchStrategy: all) found beans of type 'org.apache.shiro.mgt.SubjectDAO' subjectDAO (OnBeanCondition) - - ShiroAutoConfiguration#subjectFactory: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.SubjectFactory; SearchStrategy: all) found beans of type 'org.apache.shiro.mgt.SubjectFactory' subjectFactory (OnBeanCondition) - - ShiroBeanAutoConfiguration#lifecycleBeanPostProcessor: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.spring.LifecycleBeanPostProcessor; SearchStrategy: all) found beans of type 'org.apache.shiro.spring.LifecycleBeanPostProcessor' lifecycleBeanPostProcessor (OnBeanCondition) - - ShiroWebAutoConfiguration#authenticator: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.authc.Authenticator; SearchStrategy: all) found beans of type 'org.apache.shiro.authc.Authenticator' securityManager (OnBeanCondition) - - ShiroWebAutoConfiguration#authorizer: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.authz.Authorizer; SearchStrategy: all) found beans of type 'org.apache.shiro.authz.Authorizer' securityManager, shiroRealm (OnBeanCondition) - - ShiroWebAutoConfiguration#securityManager: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.mgt.SessionsSecurityManager; SearchStrategy: all) found beans of type 'org.apache.shiro.mgt.SessionsSecurityManager' securityManager (OnBeanCondition) - - ShiroWebAutoConfiguration#sessionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.session.mgt.SessionManager; SearchStrategy: all) found beans of type 'org.apache.shiro.session.mgt.SessionManager' securityManager (OnBeanCondition) - - ShiroWebFilterConfiguration#shiroFilterFactoryBean: - Did not match: - - @ConditionalOnMissingBean (types: org.apache.shiro.spring.web.ShiroFilterFactoryBean; SearchStrategy: all) found beans of type 'org.apache.shiro.spring.web.ShiroFilterFactoryBean' &shiroFilterFactoryBean (OnBeanCondition) - - SolrAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.impl.CloudSolrClient' (OnClassCondition) - - SolrRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.SolrClient' (OnClassCondition) - - SpringApplicationAdminJmxAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.application.admin.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - SpringDataWebAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.web.PageableHandlerMethodArgumentResolver' (OnClassCondition) - - TaskExecutionAutoConfiguration#applicationTaskExecutor: - Did not match: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) found beans of type 'java.util.concurrent.Executor' taskScheduler, asyncExecutor (OnBeanCondition) - - TaskSchedulingAutoConfiguration#taskScheduler: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.scheduling.annotation.SchedulingConfigurer,org.springframework.scheduling.TaskScheduler,java.util.concurrent.ScheduledExecutorService; SearchStrategy: all) found beans of type 'org.springframework.scheduling.annotation.SchedulingConfigurer' scheduledConfig and found beans of type 'org.springframework.scheduling.TaskScheduler' taskScheduler (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring5.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#localeResolver: - Did not match: - - @ConditionalOnProperty (spring.mvc.locale) did not find property 'locale' (OnPropertyCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.transaction.TransactionManager' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-09-20 17:47:23.650 DEBUG 22604 --- [http-nio-8101-Acceptor-0] o.apache.tomcat.util.threads.LimitLatch : Counting up[http-nio-8101-Acceptor-0] latch=0 -2024-09-20 17:47:23.654 INFO 22604 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8101 (http) with context path '' -2024-09-20 17:47:23.656 INFO 22604 --- [main] com.yf.exam.ExamApplication : Started ExamApplication in 11.195 seconds (JVM running for 11.609) -2024-09-20 17:47:23.658 DEBUG 22604 --- [main] o.s.c.e.PropertySourcesPropertyResolver : Found key 'server.port' in PropertySource 'configurationProperties' with value of type Integer -2024-09-20 17:47:23.659 INFO 22604 --- [main] com.yf.exam.ExamApplication : ----------------------------------------------------------- - Ʒϵͳɹ·: - ·: http://localhost:8101/ - ַ: http://172.17.105.135:8101/ - APIĵ: http://172.17.105.135:8101/doc.html ----------------------------------------------------------- -2024-09-20 17:47:27.165 DEBUG 22604 --- [http-nio-8101-Acceptor-0] o.apache.tomcat.util.threads.LimitLatch : Counting up[http-nio-8101-Acceptor-0] latch=1 -2024-09-20 17:47:27.165 DEBUG 22604 --- [http-nio-8101-Acceptor-0] o.apache.tomcat.util.threads.LimitLatch : Counting up[http-nio-8101-Acceptor-0] latch=2 -2024-09-20 17:47:27.181 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=RequestProcessor,worker="http-nio-8101",name=HttpRequest1 -2024-09-20 17:47:27.181 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.modeler.Registry : Looking for descriptor -2024-09-20 17:47:27.182 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.modeler.Registry : Introspecting -2024-09-20 17:47:27.182 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute virtualHost public java.lang.String org.apache.coyote.RequestInfo.getVirtualHost() null -2024-09-20 17:47:27.182 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute bytesSent public long org.apache.coyote.RequestInfo.getBytesSent() public void org.apache.coyote.RequestInfo.setBytesSent(long) -2024-09-20 17:47:27.182 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute method public java.lang.String org.apache.coyote.RequestInfo.getMethod() null -2024-09-20 17:47:27.182 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute remoteAddr public java.lang.String org.apache.coyote.RequestInfo.getRemoteAddr() null -2024-09-20 17:47:27.182 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestBytesSent public long org.apache.coyote.RequestInfo.getRequestBytesSent() null -2024-09-20 17:47:27.182 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute rpName public javax.management.ObjectName org.apache.coyote.RequestInfo.getRpName() public void org.apache.coyote.RequestInfo.setRpName(javax.management.ObjectName) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute contentLength public int org.apache.coyote.RequestInfo.getContentLength() null -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute workerThreadName public java.lang.String org.apache.coyote.RequestInfo.getWorkerThreadName() public void org.apache.coyote.RequestInfo.setWorkerThreadName(java.lang.String) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute bytesReceived public long org.apache.coyote.RequestInfo.getBytesReceived() public void org.apache.coyote.RequestInfo.setBytesReceived(long) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestProcessingTime public long org.apache.coyote.RequestInfo.getRequestProcessingTime() null -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute globalProcessor public org.apache.coyote.RequestGroupInfo org.apache.coyote.RequestInfo.getGlobalProcessor() public void org.apache.coyote.RequestInfo.setGlobalProcessor(org.apache.coyote.RequestGroupInfo) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute remoteAddrForwarded public java.lang.String org.apache.coyote.RequestInfo.getRemoteAddrForwarded() null -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute protocol public java.lang.String org.apache.coyote.RequestInfo.getProtocol() null -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute currentQueryString public java.lang.String org.apache.coyote.RequestInfo.getCurrentQueryString() null -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxRequestUri public java.lang.String org.apache.coyote.RequestInfo.getMaxRequestUri() public void org.apache.coyote.RequestInfo.setMaxRequestUri(java.lang.String) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestBytesReceived public long org.apache.coyote.RequestInfo.getRequestBytesReceived() null -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute serverPort public int org.apache.coyote.RequestInfo.getServerPort() null -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute stage public int org.apache.coyote.RequestInfo.getStage() public void org.apache.coyote.RequestInfo.setStage(int) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestCount public int org.apache.coyote.RequestInfo.getRequestCount() public void org.apache.coyote.RequestInfo.setRequestCount(int) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxTime public long org.apache.coyote.RequestInfo.getMaxTime() public void org.apache.coyote.RequestInfo.setMaxTime(long) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute processingTime public long org.apache.coyote.RequestInfo.getProcessingTime() public void org.apache.coyote.RequestInfo.setProcessingTime(long) -2024-09-20 17:47:27.183 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute currentUri public java.lang.String org.apache.coyote.RequestInfo.getCurrentUri() null -2024-09-20 17:47:27.184 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute lastRequestProcessingTime public long org.apache.coyote.RequestInfo.getLastRequestProcessingTime() public void org.apache.coyote.RequestInfo.setLastRequestProcessingTime(long) -2024-09-20 17:47:27.184 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute errorCount public int org.apache.coyote.RequestInfo.getErrorCount() public void org.apache.coyote.RequestInfo.setErrorCount(int) -2024-09-20 17:47:27.184 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.MbeansDescriptorsIntrospectionSource : Setting name: org.apache.coyote.RequestInfo -2024-09-20 17:47:27.184 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.coyote.RequestInfo@508c2c88 Tomcat:type=RequestProcessor,worker="http-nio-8101",name=HttpRequest1 -2024-09-20 17:47:27.185 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read from buffer: [0] -2024-09-20 17:47:27.185 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read direct from socket: [901] -2024-09-20 17:47:27.186 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.coyote.http11.Http11InputBuffer : Received [GET / HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -sec-ch-ua-platform: "Windows" -Upgrade-Insecure-Requests: 1 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 -Sec-Fetch-Site: none -Sec-Fetch-Mode: navigate -Sec-Fetch-User: ?1 -Sec-Fetch-Dest: document -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w - -] -2024-09-20 17:47:27.192 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.http.Parameters : Set query string encoding to UTF-8 -2024-09-20 17:47:27.193 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:27.196 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.authenticator.AuthenticatorBase : Security checking request GET / -2024-09-20 17:47:27.197 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:27.200 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.a.jaspic.AuthConfigFactoryImpl : Loading persistent provider registrations from [C:\Users\\AppData\Local\Temp\tomcat.8362234247744766761.8101\conf\jaspic-providers.xml] -2024-09-20 17:47:27.200 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:27.201 INFO 22604 --- [http-nio-8101-exec-2] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-09-20 17:47:27.201 INFO 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' -2024-09-20 17:47:27.202 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : Detected StandardServletMultipartResolver -2024-09-20 17:47:27.209 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-09-20 17:47:27.210 INFO 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : Completed initialization in 8 ms -2024-09-20 17:47:27.231 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:27.231 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : GET "/", parameters={} -2024-09-20 17:47:27.233 DEBUG 22604 --- [http-nio-8101-exec-2] pertySourcedRequestMappingHandlerMapping : looking up handler for path: / -2024-09-20 17:47:27.237 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.b.a.w.s.WelcomePageHandlerMapping : Mapped to ParameterizableViewController [view="forward:index.html"] -2024-09-20 17:47:27.241 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.w.s.v.ContentNegotiatingViewResolver : Selected 'text/html' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] -2024-09-20 17:47:27.241 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.w.servlet.view.InternalResourceView : View name 'forward:', model {} -2024-09-20 17:47:27.242 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.w.servlet.view.InternalResourceView : Forwarding to [index.html] -2024-09-20 17:47:27.244 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : "FORWARD" dispatch for GET "/index.html", parameters={} -2024-09-20 17:47:27.245 DEBUG 22604 --- [http-nio-8101-exec-2] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /index.html -2024-09-20 17:47:27.246 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:27.257 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.http11.filters.GzipOutputFilter : Flushing the compression stream! -2024-09-20 17:47:27.258 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.http11.filters.GzipOutputFilter : Flushing the compression stream! -2024-09-20 17:47:27.258 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : Exiting from "FORWARD" dispatch, status 200 -2024-09-20 17:47:27.259 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Disabling the response for further output -2024-09-20 17:47:27.260 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : Completed 200 OK -2024-09-20 17:47:27.260 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read from buffer: [0] -2024-09-20 17:47:27.260 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read direct from socket: [0] -2024-09-20 17:47:27.261 DEBUG 22604 --- [http-nio-8101-exec-2] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:27.315 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read from buffer: [0] -2024-09-20 17:47:27.315 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read direct from socket: [837] -2024-09-20 17:47:27.316 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/js/runtime.js HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: */* -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: script -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:27.316 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:27.316 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/js/runtime.js -2024-09-20 17:47:27.316 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:27.317 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:27.317 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:27.318 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.web.servlet.DispatcherServlet : GET "/static/js/runtime.js", parameters={} -2024-09-20 17:47:27.318 DEBUG 22604 --- [http-nio-8101-exec-1] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/js/runtime.js -2024-09-20 17:47:27.319 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:27.322 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:27.323 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read from buffer: [0] -2024-09-20 17:47:27.323 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read direct from socket: [0] -2024-09-20 17:47:27.323 DEBUG 22604 --- [http-nio-8101-exec-1] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:27.329 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read from buffer: [0] -2024-09-20 17:47:27.329 DEBUG 22604 --- [http-nio-8101-Acceptor-0] o.apache.tomcat.util.threads.LimitLatch : Counting up[http-nio-8101-Acceptor-0] latch=3 -2024-09-20 17:47:27.329 DEBUG 22604 --- [http-nio-8101-exec-7] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read direct from socket: [845] -2024-09-20 17:47:27.329 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=RequestProcessor,worker="http-nio-8101",name=HttpRequest2 -2024-09-20 17:47:27.329 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/js/chunk-elementUI.js HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: */* -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: script -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:27.330 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.coyote.RequestInfo@17c35049 Tomcat:type=RequestProcessor,worker="http-nio-8101",name=HttpRequest2 -2024-09-20 17:47:27.330 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:27.330 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=RequestProcessor,worker="http-nio-8101",name=HttpRequest3 -2024-09-20 17:47:27.330 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read from buffer: [0] -2024-09-20 17:47:27.331 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/js/chunk-elementUI.js -2024-09-20 17:47:27.331 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.coyote.RequestInfo@33567ecb Tomcat:type=RequestProcessor,worker="http-nio-8101",name=HttpRequest3 -2024-09-20 17:47:27.331 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read direct from socket: [840] -2024-09-20 17:47:27.331 DEBUG 22604 --- [http-nio-8101-exec-7] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:27.331 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:27.331 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/js/chunk-libs.js HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: */* -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: script -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:27.331 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:27.331 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [833] -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.tomcat.util.http.Parameters : Set query string encoding to UTF-8 -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/js/app.js HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: */* -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: script -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-7] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/js/chunk-libs.js -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-7] o.s.web.servlet.DispatcherServlet : GET "/static/js/chunk-elementUI.js", parameters={} -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.tomcat.util.http.Parameters : Set query string encoding to UTF-8 -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-7] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/js/chunk-elementUI.js -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:27.332 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:27.334 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/js/app.js -2024-09-20 17:47:27.334 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:27.334 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:27.334 DEBUG 22604 --- [http-nio-8101-exec-7] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:27.335 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:27.336 DEBUG 22604 --- [http-nio-8101-exec-10] o.s.web.servlet.DispatcherServlet : GET "/static/js/chunk-libs.js", parameters={} -2024-09-20 17:47:27.336 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:27.336 DEBUG 22604 --- [http-nio-8101-exec-10] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/js/chunk-libs.js -2024-09-20 17:47:27.336 DEBUG 22604 --- [http-nio-8101-exec-5] o.s.web.servlet.DispatcherServlet : GET "/static/js/app.js", parameters={} -2024-09-20 17:47:27.336 DEBUG 22604 --- [http-nio-8101-exec-7] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:27.336 DEBUG 22604 --- [http-nio-8101-exec-5] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/js/app.js -2024-09-20 17:47:27.338 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read from buffer: [0] -2024-09-20 17:47:27.338 DEBUG 22604 --- [http-nio-8101-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:27.338 DEBUG 22604 --- [http-nio-8101-exec-7] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read direct from socket: [0] -2024-09-20 17:47:27.339 DEBUG 22604 --- [http-nio-8101-exec-7] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:27.340 DEBUG 22604 --- [http-nio-8101-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:27.340 DEBUG 22604 --- [http-nio-8101-exec-10] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:27.342 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read from buffer: [0] -2024-09-20 17:47:27.342 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read direct from socket: [0] -2024-09-20 17:47:27.342 DEBUG 22604 --- [http-nio-8101-exec-5] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:27.342 DEBUG 22604 --- [http-nio-8101-exec-10] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:27.343 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:27.343 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:27.344 DEBUG 22604 --- [http-nio-8101-exec-5] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:27.765 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:27.765 DEBUG 22604 --- [http-nio-8101-exec-6] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [913] -2024-09-20 17:47:27.765 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.coyote.http11.Http11InputBuffer : Received [POST /exam/api/sys/config/detail HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -Content-Length: 10 -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -Accept: application/json, text/plain, */* -Content-Type: application/json -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Origin: http://localhost:8101 -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: cors -Sec-Fetch-Dest: empty -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w - -{"id":"1"}] -2024-09-20 17:47:27.766 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:27.766 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.authenticator.AuthenticatorBase : Security checking request POST /exam/api/sys/config/detail -2024-09-20 17:47:27.767 DEBUG 22604 --- [http-nio-8101-exec-6] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:27.767 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:27.771 DEBUG 22604 --- [http-nio-8101-exec-6] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:27.771 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read from buffer: [0] -2024-09-20 17:47:27.772 DEBUG 22604 --- [http-nio-8101-exec-3] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read direct from socket: [877] -2024-09-20 17:47:27.772 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.coyote.http11.Http11InputBuffer : Received [GET /favicon.png HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: image -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:27.772 DEBUG 22604 --- [http-nio-8101-exec-6] o.s.web.servlet.DispatcherServlet : POST "/exam/api/sys/config/detail", parameters={} -2024-09-20 17:47:27.773 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:27.773 DEBUG 22604 --- [http-nio-8101-exec-6] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /exam/api/sys/config/detail -2024-09-20 17:47:27.773 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /favicon.png -2024-09-20 17:47:27.774 DEBUG 22604 --- [http-nio-8101-exec-3] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:27.774 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:27.775 DEBUG 22604 --- [http-nio-8101-exec-6] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public com.yf.exam.core.api.ApiRest com.yf.exam.modules.sys.config.controller.SysConfigController.find() -2024-09-20 17:47:27.776 DEBUG 22604 --- [http-nio-8101-exec-3] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:27.777 DEBUG 22604 --- [http-nio-8101-exec-3] o.s.web.servlet.DispatcherServlet : GET "/favicon.png", parameters={} -2024-09-20 17:47:27.777 DEBUG 22604 --- [http-nio-8101-exec-3] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /favicon.png -2024-09-20 17:47:27.780 DEBUG 22604 --- [http-nio-8101-exec-3] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:27.781 DEBUG 22604 --- [http-nio-8101-exec-3] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:27.783 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read from buffer: [0] -2024-09-20 17:47:27.783 DEBUG 22604 --- [http-nio-8101-exec-3] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read direct from socket: [0] -2024-09-20 17:47:27.784 DEBUG 22604 --- [http-nio-8101-exec-3] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:27.807 DEBUG 22604 --- [http-nio-8101-exec-6] org.mybatis.spring.SqlSessionUtils : Creating a new SqlSession -2024-09-20 17:47:27.814 DEBUG 22604 --- [http-nio-8101-exec-6] org.mybatis.spring.SqlSessionUtils : SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5945cedd] was not registered for synchronization because synchronization is not active -2024-09-20 17:47:27.829 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : findClass(java.util.MapBeanInfo) -2024-09-20 17:47:27.831 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:27.831 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : findClass(java.util.MapCustomizer) -2024-09-20 17:47:27.832 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:27.847 DEBUG 22604 --- [http-nio-8101-exec-6] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:27.848 DEBUG 22604 --- [http-nio-8101-exec-6] o.m.s.t.SpringManagedTransaction : JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@1f029e15] will not be managed by Spring -2024-09-20 17:47:27.856 DEBUG 22604 --- [http-nio-8101-exec-6] c.y.e.m.s.c.m.S.selectList : ==> Preparing: SELECT id,site_name,front_logo,back_logo,copy_right FROM sys_config LIMIT 1 -2024-09-20 17:47:27.866 DEBUG 22604 --- [http-nio-8101-exec-6] c.y.e.m.s.c.m.S.selectList : ==> Parameters: -2024-09-20 17:47:27.880 DEBUG 22604 --- [http-nio-8101-exec-6] c.y.e.m.s.c.m.S.selectList : <== Total: 1 -2024-09-20 17:47:27.881 DEBUG 22604 --- [http-nio-8101-exec-6] org.mybatis.spring.SqlSessionUtils : Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5945cedd] -2024-09-20 17:47:27.886 INFO 22604 --- [http-nio-8101-exec-6] org.dozer.config.GlobalSettings : Trying to find Dozer configuration file: dozer.properties -2024-09-20 17:47:27.887 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : getResource(dozer.properties) -2024-09-20 17:47:27.887 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : Delegating to parent classloader org.springframework.boot.loader.LaunchedURLClassLoader@c038203 -2024-09-20 17:47:27.887 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Resource not found, returning null -2024-09-20 17:47:27.890 WARN 22604 --- [http-nio-8101-exec-6] org.dozer.config.GlobalSettings : Dozer configuration file not found: dozer.properties. Using defaults for all Dozer global properties. -2024-09-20 17:47:27.891 INFO 22604 --- [http-nio-8101-exec-6] org.dozer.DozerInitializer : Initializing Dozer. Version: 5.5.0, Thread Name: http-nio-8101-exec-6 -2024-09-20 17:47:27.893 INFO 22604 --- [http-nio-8101-exec-6] org.dozer.jmx.JMXPlatformImpl : Dozer JMX MBean [org.dozer.jmx:type=DozerStatisticsController] auto registered with the Platform MBean Server -2024-09-20 17:47:27.894 INFO 22604 --- [http-nio-8101-exec-6] org.dozer.jmx.JMXPlatformImpl : Dozer JMX MBean [org.dozer.jmx:type=DozerAdminController] auto registered with the Platform MBean Server -2024-09-20 17:47:27.895 INFO 22604 --- [http-nio-8101-exec-6] org.dozer.DozerBeanMapper : Initializing a new instance of dozer bean mapper. -2024-09-20 17:47:27.919 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BooleanConverter : Setting default value: false -2024-09-20 17:47:27.919 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BooleanConverter : Converting 'Boolean' value 'false' to type 'Boolean' -2024-09-20 17:47:27.920 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BooleanConverter : No conversion required, value is already a Boolean -2024-09-20 17:47:27.920 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ByteConverter : Setting default value: 0 -2024-09-20 17:47:27.920 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ByteConverter : Converting 'Integer' value '0' to type 'Byte' -2024-09-20 17:47:27.920 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ByteConverter : Converted to Byte value '0' -2024-09-20 17:47:27.920 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.CharacterConverter : Setting default value: -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.CharacterConverter : Converting 'Character' value ' ' to type 'Character' -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.CharacterConverter : No conversion required, value is already a Character -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.DoubleConverter : Setting default value: 0 -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.DoubleConverter : Converting 'Integer' value '0' to type 'Double' -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.DoubleConverter : Converted to Double value '0.0' -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.FloatConverter : Setting default value: 0 -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.FloatConverter : Converting 'Integer' value '0' to type 'Float' -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.FloatConverter : Converted to Float value '0.0' -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.IntegerConverter : Setting default value: 0 -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.IntegerConverter : Converting 'Integer' value '0' to type 'Integer' -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.IntegerConverter : No conversion required, value is already a Integer -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.LongConverter : Setting default value: 0 -2024-09-20 17:47:27.921 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.LongConverter : Converting 'Integer' value '0' to type 'Long' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.LongConverter : Converted to Long value '0' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ShortConverter : Setting default value: 0 -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ShortConverter : Converting 'Integer' value '0' to type 'Short' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ShortConverter : Converted to Short value '0' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BigDecimalConverter : Setting default value: 0.0 -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BigDecimalConverter : Converting 'BigDecimal' value '0.0' to type 'BigDecimal' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BigDecimalConverter : No conversion required, value is already a BigDecimal -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BigIntegerConverter : Setting default value: 0 -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BigIntegerConverter : Converting 'BigInteger' value '0' to type 'BigInteger' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BigIntegerConverter : No conversion required, value is already a BigInteger -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BooleanConverter : Setting default value: false -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BooleanConverter : Converting 'Boolean' value 'false' to type 'Boolean' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.BooleanConverter : No conversion required, value is already a Boolean -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ByteConverter : Setting default value: 0 -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ByteConverter : Converting 'Integer' value '0' to type 'Byte' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ByteConverter : Converted to Byte value '0' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.CharacterConverter : Setting default value: -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.CharacterConverter : Converting 'Character' value ' ' to type 'Character' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.CharacterConverter : No conversion required, value is already a Character -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.DoubleConverter : Setting default value: 0 -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.DoubleConverter : Converting 'Integer' value '0' to type 'Double' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.DoubleConverter : Converted to Double value '0.0' -2024-09-20 17:47:27.922 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.FloatConverter : Setting default value: 0 -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.FloatConverter : Converting 'Integer' value '0' to type 'Float' -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.FloatConverter : Converted to Float value '0.0' -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.IntegerConverter : Setting default value: 0 -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.IntegerConverter : Converting 'Integer' value '0' to type 'Integer' -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.IntegerConverter : No conversion required, value is already a Integer -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.LongConverter : Setting default value: 0 -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.LongConverter : Converting 'Integer' value '0' to type 'Long' -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.LongConverter : Converted to Long value '0' -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ShortConverter : Setting default value: 0 -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ShortConverter : Converting 'Integer' value '0' to type 'Short' -2024-09-20 17:47:27.924 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ShortConverter : Converted to Short value '0' -2024-09-20 17:47:27.925 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.StringConverter : Setting default value: -2024-09-20 17:47:27.925 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.StringConverter : Converting 'String' value '' to type 'String' -2024-09-20 17:47:27.927 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Z@32ca401 -2024-09-20 17:47:27.927 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'boolean[]' value '[Z@32ca401' to type 'boolean[]' -2024-09-20 17:47:27.927 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a boolean[] -2024-09-20 17:47:27.927 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [B@6b85fa6f -2024-09-20 17:47:27.927 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'byte[]' value '[B@6b85fa6f' to type 'byte[]' -2024-09-20 17:47:27.927 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a byte[] -2024-09-20 17:47:27.927 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [C@4682f9e9 -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'char[]' value '[C@4682f9e9' to type 'char[]' -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a char[] -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [D@30a22373 -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'double[]' value '[D@30a22373' to type 'double[]' -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a double[] -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [F@56c885ca -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'float[]' value '[F@56c885ca' to type 'float[]' -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a float[] -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [I@12da5bfe -2024-09-20 17:47:27.928 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'int[]' value '[I@12da5bfe' to type 'int[]' -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a int[] -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [J@4346a5fd -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'long[]' value '[J@4346a5fd' to type 'long[]' -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a long[] -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [S@62debf5d -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'short[]' value '[S@62debf5d' to type 'short[]' -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a short[] -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.math.BigDecimal;@702a9019 -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'BigDecimal[]' value '[Ljava.math.BigDecimal;@702a9019' to type 'BigDecimal[]' -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a BigDecimal[] -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.math.BigInteger;@30ef2049 -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'BigInteger[]' value '[Ljava.math.BigInteger;@30ef2049' to type 'BigInteger[]' -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a BigInteger[] -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Boolean;@467002e4 -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Boolean[]' value '[Ljava.lang.Boolean;@467002e4' to type 'Boolean[]' -2024-09-20 17:47:27.929 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Boolean[] -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Byte;@51436920 -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Byte[]' value '[Ljava.lang.Byte;@51436920' to type 'Byte[]' -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Byte[] -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Character;@754d8149 -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Character[]' value '[Ljava.lang.Character;@754d8149' to type 'Character[]' -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Character[] -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Double;@3ce90ac1 -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Double[]' value '[Ljava.lang.Double;@3ce90ac1' to type 'Double[]' -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Double[] -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Float;@7ac8489a -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Float[]' value '[Ljava.lang.Float;@7ac8489a' to type 'Float[]' -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Float[] -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Integer;@3008248a -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Integer[]' value '[Ljava.lang.Integer;@3008248a' to type 'Integer[]' -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Integer[] -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Long;@2956bc0b -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Long[]' value '[Ljava.lang.Long;@2956bc0b' to type 'Long[]' -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Long[] -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Short;@5d9d14e2 -2024-09-20 17:47:27.930 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Short[]' value '[Ljava.lang.Short;@5d9d14e2' to type 'Short[]' -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Short[] -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.String;@65291b53 -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'String[]' value '[Ljava.lang.String;@65291b53' to type 'String[]' -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a String[] -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.lang.Class;@14f45f08 -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Class[]' value '[Ljava.lang.Class;@14f45f08' to type 'Class[]' -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Class[] -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.util.Date;@85e0f79 -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Date[]' value '[Ljava.util.Date;@85e0f79' to type 'Date[]' -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Date[] -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.util.Calendar;@100f47ee -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'Calendar[]' value '[Ljava.util.Calendar;@100f47ee' to type 'Calendar[]' -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a Calendar[] -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.io.File;@5e68a090 -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'java.io.File[]' value '[Ljava.io.File;@5e68a090' to type 'java.io.File[]' -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a java.io.File[] -2024-09-20 17:47:27.931 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.sql.Date;@d3f4c1 -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'java.sql.Date[]' value '[Ljava.sql.Date;@d3f4c1' to type 'java.sql.Date[]' -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a java.sql.Date[] -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.sql.Time;@172aad8e -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'java.sql.Time[]' value '[Ljava.sql.Time;@172aad8e' to type 'java.sql.Time[]' -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a java.sql.Time[] -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.sql.Timestamp;@2d9eed67 -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'java.sql.Timestamp[]' value '[Ljava.sql.Timestamp;@2d9eed67' to type 'java.sql.Timestamp[]' -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a java.sql.Timestamp[] -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Setting default value: [Ljava.net.URL;@c217a3e -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : Converting 'java.net.URL[]' value '[Ljava.net.URL;@c217a3e' to type 'java.net.URL[]' -2024-09-20 17:47:27.932 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.b.converters.ArrayConverter : No conversion required, value is already a java.net.URL[] -2024-09-20 17:47:27.935 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : findClass(com.yf.exam.modules.sys.config.entity.SysConfigBeanInfo) -2024-09-20 17:47:27.936 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:27.937 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : findClass(com.baomidou.mybatisplus.extension.activerecord.ModelBeanInfo) -2024-09-20 17:47:27.938 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:27.938 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : findClass(com.baomidou.mybatisplus.extension.activerecord.ModelCustomizer) -2024-09-20 17:47:27.940 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:27.941 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : findClass(com.yf.exam.modules.sys.config.entity.SysConfigCustomizer) -2024-09-20 17:47:27.942 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:27.943 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : findClass(com.yf.exam.modules.sys.config.dto.SysConfigDTOBeanInfo) -2024-09-20 17:47:27.945 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:27.945 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : findClass(com.yf.exam.modules.sys.config.dto.SysConfigDTOCustomizer) -2024-09-20 17:47:27.946 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:27.951 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysConfigDTO, Dest value: null -2024-09-20 17:47:27.951 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.MappingProcessor : MAPPED: SysConfig.backLogo --> SysConfigDTO.backLogo VALUES: NULL --> NULL MAPID: -2024-09-20 17:47:27.953 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysConfigDTO, Dest value: null -2024-09-20 17:47:27.953 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.MappingProcessor : MAPPED: SysConfig.copyRight --> SysConfigDTO.copyRight VALUES: NULL --> NULL MAPID: -2024-09-20 17:47:27.954 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysConfigDTO, Dest value: Ʒѵϵͳ -2024-09-20 17:47:27.954 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.MappingProcessor : MAPPED: SysConfig.siteName --> SysConfigDTO.siteName VALUES: Ʒѵϵͳ --> Ʒѵϵͳ MAPID: -2024-09-20 17:47:27.954 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysConfigDTO, Dest value: 1 -2024-09-20 17:47:27.954 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.MappingProcessor : MAPPED: SysConfig.id --> SysConfigDTO.id VALUES: 1 --> 1 MAPID: -2024-09-20 17:47:27.954 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysConfigDTO, Dest value: null -2024-09-20 17:47:27.954 DEBUG 22604 --- [http-nio-8101-exec-6] org.dozer.MappingProcessor : MAPPED: SysConfig.frontLogo --> SysConfigDTO.frontLogo VALUES: NULL --> NULL MAPID: -2024-09-20 17:47:28.008 DEBUG 22604 --- [http-nio-8101-exec-6] m.m.a.RequestResponseBodyMethodProcessor : Using 'application/json;charset=UTF-8', given [application/json, text/plain, */*] and supported [application/json;charset=UTF-8, application/json, application/*+json, application/json, application/*+json] -2024-09-20 17:47:28.012 DEBUG 22604 --- [http-nio-8101-exec-6] m.m.a.RequestResponseBodyMethodProcessor : Writing [ApiRest(msg=ɹ, code=0, data={"siteName":"Ʒѵϵͳ","id":"1"})] -2024-09-20 17:47:28.020 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.c.http11.filters.GzipOutputFilter : Flushing the compression stream! -2024-09-20 17:47:28.020 DEBUG 22604 --- [http-nio-8101-exec-6] o.s.web.servlet.DispatcherServlet : Completed 200 OK -2024-09-20 17:47:28.021 DEBUG 22604 --- [http-nio-8101-exec-6] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:28.021 DEBUG 22604 --- [http-nio-8101-exec-6] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:28.021 DEBUG 22604 --- [http-nio-8101-exec-6] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:28.042 DEBUG 22604 --- [http-nio-8101-exec-8] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:28.042 DEBUG 22604 --- [http-nio-8101-exec-8] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [832] -2024-09-20 17:47:28.043 DEBUG 22604 --- [http-nio-8101-exec-8] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/js/25.js HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: */* -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: script -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:28.043 DEBUG 22604 --- [http-nio-8101-exec-8] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:28.044 DEBUG 22604 --- [http-nio-8101-exec-8] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/js/25.js -2024-09-20 17:47:28.044 DEBUG 22604 --- [http-nio-8101-exec-8] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:28.044 DEBUG 22604 --- [http-nio-8101-exec-8] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:28.046 DEBUG 22604 --- [http-nio-8101-exec-8] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:28.046 DEBUG 22604 --- [http-nio-8101-exec-8] o.s.web.servlet.DispatcherServlet : GET "/static/js/25.js", parameters={} -2024-09-20 17:47:28.046 DEBUG 22604 --- [http-nio-8101-exec-8] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/js/25.js -2024-09-20 17:47:28.046 DEBUG 22604 --- [http-nio-8101-exec-8] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:28.047 DEBUG 22604 --- [http-nio-8101-exec-8] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:28.048 DEBUG 22604 --- [http-nio-8101-exec-8] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:28.048 DEBUG 22604 --- [http-nio-8101-exec-8] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:28.048 DEBUG 22604 --- [http-nio-8101-exec-8] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:28.068 DEBUG 22604 --- [http-nio-8101-exec-9] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:28.069 DEBUG 22604 --- [http-nio-8101-exec-9] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [898] -2024-09-20 17:47:28.069 DEBUG 22604 --- [http-nio-8101-exec-9] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/img/login-bg.5825f033.svg HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: image -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:28.070 DEBUG 22604 --- [http-nio-8101-exec-9] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:28.070 DEBUG 22604 --- [http-nio-8101-exec-9] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/img/login-bg.5825f033.svg -2024-09-20 17:47:28.071 DEBUG 22604 --- [http-nio-8101-exec-9] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:28.071 DEBUG 22604 --- [http-nio-8101-exec-9] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:28.071 DEBUG 22604 --- [http-nio-8101-exec-9] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:28.071 DEBUG 22604 --- [http-nio-8101-exec-9] o.s.web.servlet.DispatcherServlet : GET "/static/img/login-bg.5825f033.svg", parameters={} -2024-09-20 17:47:28.071 DEBUG 22604 --- [http-nio-8101-exec-9] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/img/login-bg.5825f033.svg -2024-09-20 17:47:28.073 DEBUG 22604 --- [http-nio-8101-exec-9] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:28.075 DEBUG 22604 --- [http-nio-8101-exec-9] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:28.075 DEBUG 22604 --- [http-nio-8101-exec-9] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:28.076 DEBUG 22604 --- [http-nio-8101-exec-9] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:28.076 DEBUG 22604 --- [http-nio-8101-exec-9] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:28.081 DEBUG 22604 --- [http-nio-8101-exec-4] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:28.082 DEBUG 22604 --- [http-nio-8101-exec-4] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [883] -2024-09-20 17:47:28.082 DEBUG 22604 --- [http-nio-8101-exec-4] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/fonts/element-icons.535877f5.woff HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -Origin: http://localhost:8101 -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: */* -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: cors -Sec-Fetch-Dest: font -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:28.082 DEBUG 22604 --- [http-nio-8101-exec-4] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:28.083 DEBUG 22604 --- [http-nio-8101-exec-4] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/fonts/element-icons.535877f5.woff -2024-09-20 17:47:28.083 DEBUG 22604 --- [http-nio-8101-exec-4] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:28.083 DEBUG 22604 --- [http-nio-8101-exec-4] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:28.084 DEBUG 22604 --- [http-nio-8101-exec-4] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:28.084 DEBUG 22604 --- [http-nio-8101-exec-4] o.s.web.servlet.DispatcherServlet : GET "/static/fonts/element-icons.535877f5.woff", parameters={} -2024-09-20 17:47:28.084 DEBUG 22604 --- [http-nio-8101-exec-4] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/fonts/element-icons.535877f5.woff -2024-09-20 17:47:28.086 DEBUG 22604 --- [http-nio-8101-exec-4] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:28.087 DEBUG 22604 --- [http-nio-8101-exec-4] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:28.088 DEBUG 22604 --- [http-nio-8101-exec-4] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:28.088 DEBUG 22604 --- [http-nio-8101-exec-4] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:28.088 DEBUG 22604 --- [http-nio-8101-exec-4] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:29.937 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:29.937 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [939] -2024-09-20 17:47:29.938 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.coyote.http11.Http11InputBuffer : Received [POST /exam/api/sys/user/login HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -Content-Length: 39 -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -Accept: application/json, text/plain, */* -Content-Type: application/json -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Origin: http://localhost:8101 -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: cors -Sec-Fetch-Dest: empty -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w - -{"username":"admin","password":"admin"}] -2024-09-20 17:47:29.938 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w -2024-09-20 17:47:29.939 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.authenticator.AuthenticatorBase : Security checking request POST /exam/api/sys/user/login -2024-09-20 17:47:29.939 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:29.939 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:29.940 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:29.940 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : POST "/exam/api/sys/user/login", parameters={} -2024-09-20 17:47:29.941 DEBUG 22604 --- [http-nio-8101-exec-2] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /exam/api/sys/user/login -2024-09-20 17:47:29.941 DEBUG 22604 --- [http-nio-8101-exec-2] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public com.yf.exam.core.api.ApiRest com.yf.exam.modules.sys.user.controller.SysUserController.login(com.yf.exam.modules.sys.user.dto.request.SysUserLoginReqDTO) -2024-09-20 17:47:29.951 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.a.RequestResponseBodyMethodProcessor : Read "application/json;charset=UTF-8" to [SysUserLoginReqDTO(username=admin, password=admin)] -2024-09-20 17:47:29.968 DEBUG 22604 --- [http-nio-8101-exec-2] org.mybatis.spring.SqlSessionUtils : Creating a new SqlSession -2024-09-20 17:47:29.968 DEBUG 22604 --- [http-nio-8101-exec-2] org.mybatis.spring.SqlSessionUtils : SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@557efdb2] was not registered for synchronization because synchronization is not active -2024-09-20 17:47:29.981 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:29.981 DEBUG 22604 --- [http-nio-8101-exec-2] o.m.s.t.SpringManagedTransaction : JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@1f029e15] will not be managed by Spring -2024-09-20 17:47:29.981 DEBUG 22604 --- [http-nio-8101-exec-2] c.y.e.m.s.u.m.SysUserMapper.selectList : ==> Preparing: SELECT id,user_name,real_name,password,salt,role_ids,depart_id,create_time,update_time,state FROM sys_user WHERE (user_name = ?) -2024-09-20 17:47:29.982 DEBUG 22604 --- [http-nio-8101-exec-2] c.y.e.m.s.u.m.SysUserMapper.selectList : ==> Parameters: admin(String) -2024-09-20 17:47:29.983 DEBUG 22604 --- [http-nio-8101-exec-2] c.y.e.m.s.u.m.SysUserMapper.selectList : <== Total: 1 -2024-09-20 17:47:29.984 DEBUG 22604 --- [http-nio-8101-exec-2] org.mybatis.spring.SqlSessionUtils : Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@557efdb2] -2024-09-20 17:47:29.986 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.loader.WebappClassLoaderBase : findClass(com.yf.exam.modules.sys.user.entity.SysUserBeanInfo) -2024-09-20 17:47:29.989 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:29.989 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.loader.WebappClassLoaderBase : findClass(com.yf.exam.modules.sys.user.entity.SysUserCustomizer) -2024-09-20 17:47:29.990 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:29.992 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.loader.WebappClassLoaderBase : findClass(com.yf.exam.modules.sys.user.dto.response.SysUserLoginDTOBeanInfo) -2024-09-20 17:47:29.993 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:29.993 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.loader.WebappClassLoaderBase : findClass(com.yf.exam.modules.sys.user.dto.response.SysUserLoginDTOCustomizer) -2024-09-20 17:47:29.994 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException -2024-09-20 17:47:29.996 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: A -2024-09-20 17:47:29.996 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.MappingProcessor : MAPPED: SysUser.realName --> SysUserLoginDTO.realName VALUES: A --> A MAPID: -2024-09-20 17:47:29.996 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: sa -2024-09-20 17:47:29.996 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.MappingProcessor : MAPPED: SysUser.roleIds --> SysUserLoginDTO.roleIds VALUES: sa --> sa MAPID: -2024-09-20 17:47:29.997 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: Mon Apr 20 13:51:03 CST 2020 -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.MappingProcessor : MAPPED: SysUser.createTime --> SysUserLoginDTO.createTime VALUES: Mon Apr 20 13:51:03 CST 2020 --> Mon Apr 20 13:51:03 CST 2020 MAPID: -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 1318103313740320770 -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.MappingProcessor : MAPPED: SysUser.departId --> SysUserLoginDTO.departId VALUES: 1318103313740320770 --> 1318103313740320770 MAPID: -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: Mon Apr 20 13:51:03 CST 2020 -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.MappingProcessor : MAPPED: SysUser.updateTime --> SysUserLoginDTO.updateTime VALUES: Mon Apr 20 13:51:03 CST 2020 --> Mon Apr 20 13:51:03 CST 2020 MAPID: -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 10001 -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.MappingProcessor : MAPPED: SysUser.id --> SysUserLoginDTO.id VALUES: 10001 --> 10001 MAPID: -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.b.converters.IntegerConverter : Converting 'Integer' value '0' to type 'Integer' -2024-09-20 17:47:29.999 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.b.converters.IntegerConverter : No conversion required, value is already a Integer -2024-09-20 17:47:30.000 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 0 -2024-09-20 17:47:30.000 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.MappingProcessor : MAPPED: SysUser.state --> SysUserLoginDTO.state VALUES: 0 --> 0 MAPID: -2024-09-20 17:47:30.000 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: admin -2024-09-20 17:47:30.000 DEBUG 22604 --- [http-nio-8101-exec-2] org.dozer.MappingProcessor : MAPPED: SysUser.userName --> SysUserLoginDTO.userName VALUES: admin --> admin MAPID: -2024-09-20 17:47:30.034 DEBUG 22604 --- [http-nio-8101-exec-2] org.mybatis.spring.SqlSessionUtils : Creating a new SqlSession -2024-09-20 17:47:30.034 DEBUG 22604 --- [http-nio-8101-exec-2] org.mybatis.spring.SqlSessionUtils : SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@c448344] was not registered for synchronization because synchronization is not active -2024-09-20 17:47:30.038 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:30.038 DEBUG 22604 --- [http-nio-8101-exec-2] o.m.s.t.SpringManagedTransaction : JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@1f029e15] will not be managed by Spring -2024-09-20 17:47:30.038 DEBUG 22604 --- [http-nio-8101-exec-2] c.y.e.m.s.u.m.S.selectList : ==> Preparing: SELECT id,user_id,role_id FROM sys_user_role WHERE (user_id = ?) -2024-09-20 17:47:30.039 DEBUG 22604 --- [http-nio-8101-exec-2] c.y.e.m.s.u.m.S.selectList : ==> Parameters: 10001(String) -2024-09-20 17:47:30.040 DEBUG 22604 --- [http-nio-8101-exec-2] c.y.e.m.s.u.m.S.selectList : <== Total: 1 -2024-09-20 17:47:30.040 DEBUG 22604 --- [http-nio-8101-exec-2] org.mybatis.spring.SqlSessionUtils : Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@c448344] -2024-09-20 17:47:30.045 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.a.RequestResponseBodyMethodProcessor : Using 'application/json;charset=UTF-8', given [application/json, text/plain, */*] and supported [application/json;charset=UTF-8, application/json, application/*+json, application/json, application/*+json] -2024-09-20 17:47:30.046 DEBUG 22604 --- [http-nio-8101-exec-2] m.m.a.RequestResponseBodyMethodProcessor : Writing [ApiRest(msg=ɹ, code=0, data={"realName":"A","roleIds":"sa","createTime":"2020-04-20 13:51:03", (truncated)...] -2024-09-20 17:47:30.047 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.c.http11.filters.GzipOutputFilter : Flushing the compression stream! -2024-09-20 17:47:30.048 DEBUG 22604 --- [http-nio-8101-exec-2] o.s.web.servlet.DispatcherServlet : Completed 200 OK -2024-09-20 17:47:30.048 DEBUG 22604 --- [http-nio-8101-exec-2] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:30.048 DEBUG 22604 --- [http-nio-8101-exec-2] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:30.048 DEBUG 22604 --- [http-nio-8101-exec-2] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:30.056 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:30.057 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [1323] -2024-09-20 17:47:30.057 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.coyote.http11.Http11InputBuffer : Received [POST /exam/api/sys/user/info?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -Content-Length: 2 -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -Accept: application/json, text/plain, */* -Content-Type: application/json -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -token: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -sec-ch-ua-platform: "Windows" -Origin: http://localhost:8101 -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: cors -Sec-Fetch-Dest: empty -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk - -{}] -2024-09-20 17:47:30.059 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -2024-09-20 17:47:30.059 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.authenticator.AuthenticatorBase : Security checking request POST /exam/api/sys/user/info -2024-09-20 17:47:30.060 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:30.060 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:30.061 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:30.061 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.tomcat.util.http.Parameters : Decoding query null UTF-8 -2024-09-20 17:47:30.061 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.tomcat.util.http.Parameters : Start processing with input [token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk] -2024-09-20 17:47:30.063 DEBUG 22604 --- [http-nio-8101-exec-1] com.yf.exam.ability.shiro.ShiroRealm : ++++++++++Уûtoken eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -2024-09-20 17:47:30.080 DEBUG 22604 --- [http-nio-8101-exec-1] com.yf.exam.ability.shiro.ShiroRealm : ++++++++++û admin -2024-09-20 17:47:30.084 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : Creating a new SqlSession -2024-09-20 17:47:30.085 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5c2972df] was not registered for synchronization because synchronization is not active -2024-09-20 17:47:30.088 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:30.088 DEBUG 22604 --- [http-nio-8101-exec-1] o.m.s.t.SpringManagedTransaction : JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@1f029e15] will not be managed by Spring -2024-09-20 17:47:30.088 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.SysUserMapper.selectList : ==> Preparing: SELECT id,user_name,real_name,password,salt,role_ids,depart_id,create_time,update_time,state FROM sys_user WHERE (user_name = ?) -2024-09-20 17:47:30.089 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.SysUserMapper.selectList : ==> Parameters: admin(String) -2024-09-20 17:47:30.090 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.SysUserMapper.selectList : <== Total: 1 -2024-09-20 17:47:30.090 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5c2972df] -2024-09-20 17:47:30.090 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: A -2024-09-20 17:47:30.091 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.realName --> SysUserLoginDTO.realName VALUES: A --> A MAPID: -2024-09-20 17:47:30.091 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: sa -2024-09-20 17:47:30.091 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.roleIds --> SysUserLoginDTO.roleIds VALUES: sa --> sa MAPID: -2024-09-20 17:47:30.092 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: Mon Apr 20 13:51:03 CST 2020 -2024-09-20 17:47:30.092 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.createTime --> SysUserLoginDTO.createTime VALUES: Mon Apr 20 13:51:03 CST 2020 --> Mon Apr 20 13:51:03 CST 2020 MAPID: -2024-09-20 17:47:30.092 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 1318103313740320770 -2024-09-20 17:47:30.092 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.departId --> SysUserLoginDTO.departId VALUES: 1318103313740320770 --> 1318103313740320770 MAPID: -2024-09-20 17:47:30.092 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: Mon Apr 20 13:51:03 CST 2020 -2024-09-20 17:47:30.092 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.updateTime --> SysUserLoginDTO.updateTime VALUES: Mon Apr 20 13:51:03 CST 2020 --> Mon Apr 20 13:51:03 CST 2020 MAPID: -2024-09-20 17:47:30.092 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 10001 -2024-09-20 17:47:30.093 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.id --> SysUserLoginDTO.id VALUES: 10001 --> 10001 MAPID: -2024-09-20 17:47:30.094 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.b.converters.IntegerConverter : Converting 'Integer' value '0' to type 'Integer' -2024-09-20 17:47:30.094 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.b.converters.IntegerConverter : No conversion required, value is already a Integer -2024-09-20 17:47:30.094 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 0 -2024-09-20 17:47:30.095 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.state --> SysUserLoginDTO.state VALUES: 0 --> 0 MAPID: -2024-09-20 17:47:30.095 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: admin -2024-09-20 17:47:30.095 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.userName --> SysUserLoginDTO.userName VALUES: admin --> admin MAPID: -2024-09-20 17:47:30.096 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : Creating a new SqlSession -2024-09-20 17:47:30.096 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7d8843e1] was not registered for synchronization because synchronization is not active -2024-09-20 17:47:30.096 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:30.097 DEBUG 22604 --- [http-nio-8101-exec-1] o.m.s.t.SpringManagedTransaction : JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@1f029e15] will not be managed by Spring -2024-09-20 17:47:30.097 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.S.selectList : ==> Preparing: SELECT id,user_id,role_id FROM sys_user_role WHERE (user_id = ?) -2024-09-20 17:47:30.097 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.S.selectList : ==> Parameters: 10001(String) -2024-09-20 17:47:30.098 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.S.selectList : <== Total: 1 -2024-09-20 17:47:30.098 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7d8843e1] -2024-09-20 17:47:30.101 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.shiro.realm.AuthenticatingRealm : Looked up AuthenticationInfo [SysUserLoginDTO(id=10001, userName=admin, realName=A, roleIds=sa, departId=1318103313740320770, createTime=Mon Apr 20 13:51:03 CST 2020, updateTime=Mon Apr 20 13:51:03 CST 2020, state=0, roles=[sa], token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk)] from doGetAuthenticationInfo -2024-09-20 17:47:30.101 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.shiro.realm.AuthenticatingRealm : AuthenticationInfo caching is disabled for info [SysUserLoginDTO(id=10001, userName=admin, realName=A, roleIds=sa, departId=1318103313740320770, createTime=Mon Apr 20 13:51:03 CST 2020, updateTime=Mon Apr 20 13:51:03 CST 2020, state=0, roles=[sa], token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk)]. Submitted token: [JwtToken(token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk)]. -2024-09-20 17:47:30.101 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.s.a.c.SimpleCredentialsMatcher : Performing credentials equality check for tokenCredentials of type [java.lang.String and accountCredentials of type [java.lang.String] -2024-09-20 17:47:30.101 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.s.a.c.SimpleCredentialsMatcher : Both credentials arguments can be easily converted to byte arrays. Performing array equals comparison -2024-09-20 17:47:30.102 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.shiro.authc.AbstractAuthenticator : Authentication successful for token [JwtToken(token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk)]. Returned account [SysUserLoginDTO(id=10001, userName=admin, realName=A, roleIds=sa, departId=1318103313740320770, createTime=Mon Apr 20 13:51:03 CST 2020, updateTime=Mon Apr 20 13:51:03 CST 2020, state=0, roles=[sa], token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk)] -2024-09-20 17:47:30.102 DEBUG 22604 --- [http-nio-8101-exec-1] o.apache.shiro.web.servlet.SimpleCookie : Added HttpServletResponse Cookie [rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Thu, 19-Sep-2024 09:47:30 GMT; SameSite=lax] -2024-09-20 17:47:30.102 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.shiro.mgt.AbstractRememberMeManager : AuthenticationToken did not indicate RememberMe is requested. RememberMe functionality will not be executed for corresponding account. -2024-09-20 17:47:30.102 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.web.servlet.DispatcherServlet : POST "/exam/api/sys/user/info?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk", parameters={masked} -2024-09-20 17:47:30.104 DEBUG 22604 --- [http-nio-8101-exec-1] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /exam/api/sys/user/info -2024-09-20 17:47:30.104 DEBUG 22604 --- [http-nio-8101-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public com.yf.exam.core.api.ApiRest com.yf.exam.modules.sys.user.controller.SysUserController.info(java.lang.String) -2024-09-20 17:47:30.105 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : Creating a new SqlSession -2024-09-20 17:47:30.106 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7d04c1ca] was not registered for synchronization because synchronization is not active -2024-09-20 17:47:30.106 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:30.107 DEBUG 22604 --- [http-nio-8101-exec-1] o.m.s.t.SpringManagedTransaction : JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@1f029e15] will not be managed by Spring -2024-09-20 17:47:30.107 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.SysUserMapper.selectList : ==> Preparing: SELECT id,user_name,real_name,password,salt,role_ids,depart_id,create_time,update_time,state FROM sys_user WHERE (user_name = ?) -2024-09-20 17:47:30.108 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.SysUserMapper.selectList : ==> Parameters: admin(String) -2024-09-20 17:47:30.108 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.SysUserMapper.selectList : <== Total: 1 -2024-09-20 17:47:30.109 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7d04c1ca] -2024-09-20 17:47:30.109 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: A -2024-09-20 17:47:30.109 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.realName --> SysUserLoginDTO.realName VALUES: A --> A MAPID: -2024-09-20 17:47:30.109 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: sa -2024-09-20 17:47:30.109 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.roleIds --> SysUserLoginDTO.roleIds VALUES: sa --> sa MAPID: -2024-09-20 17:47:30.109 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: Mon Apr 20 13:51:03 CST 2020 -2024-09-20 17:47:30.111 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.createTime --> SysUserLoginDTO.createTime VALUES: Mon Apr 20 13:51:03 CST 2020 --> Mon Apr 20 13:51:03 CST 2020 MAPID: -2024-09-20 17:47:30.111 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 1318103313740320770 -2024-09-20 17:47:30.111 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.departId --> SysUserLoginDTO.departId VALUES: 1318103313740320770 --> 1318103313740320770 MAPID: -2024-09-20 17:47:30.111 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: Mon Apr 20 13:51:03 CST 2020 -2024-09-20 17:47:30.111 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.updateTime --> SysUserLoginDTO.updateTime VALUES: Mon Apr 20 13:51:03 CST 2020 --> Mon Apr 20 13:51:03 CST 2020 MAPID: -2024-09-20 17:47:30.111 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 10001 -2024-09-20 17:47:30.112 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.id --> SysUserLoginDTO.id VALUES: 10001 --> 10001 MAPID: -2024-09-20 17:47:30.112 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.b.converters.IntegerConverter : Converting 'Integer' value '0' to type 'Integer' -2024-09-20 17:47:30.112 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.b.converters.IntegerConverter : No conversion required, value is already a Integer -2024-09-20 17:47:30.112 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: 0 -2024-09-20 17:47:30.112 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.state --> SysUserLoginDTO.state VALUES: 0 --> 0 MAPID: -2024-09-20 17:47:30.112 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.fieldmap.FieldMap : Getting ready to invoke write method on the destination object. Dest Obj: SysUserLoginDTO, Dest value: admin -2024-09-20 17:47:30.112 DEBUG 22604 --- [http-nio-8101-exec-1] org.dozer.MappingProcessor : MAPPED: SysUser.userName --> SysUserLoginDTO.userName VALUES: admin --> admin MAPID: -2024-09-20 17:47:30.113 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : Creating a new SqlSession -2024-09-20 17:47:30.113 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5d1d71a7] was not registered for synchronization because synchronization is not active -2024-09-20 17:47:30.114 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.jdbc.datasource.DataSourceUtils : Fetching JDBC Connection from DataSource -2024-09-20 17:47:30.114 DEBUG 22604 --- [http-nio-8101-exec-1] o.m.s.t.SpringManagedTransaction : JDBC Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@1f029e15] will not be managed by Spring -2024-09-20 17:47:30.114 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.S.selectList : ==> Preparing: SELECT id,user_id,role_id FROM sys_user_role WHERE (user_id = ?) -2024-09-20 17:47:30.115 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.S.selectList : ==> Parameters: 10001(String) -2024-09-20 17:47:30.115 DEBUG 22604 --- [http-nio-8101-exec-1] c.y.e.m.s.u.m.S.selectList : <== Total: 1 -2024-09-20 17:47:30.116 DEBUG 22604 --- [http-nio-8101-exec-1] org.mybatis.spring.SqlSessionUtils : Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@5d1d71a7] -2024-09-20 17:47:30.116 DEBUG 22604 --- [http-nio-8101-exec-1] m.m.a.RequestResponseBodyMethodProcessor : Using 'application/json;charset=UTF-8', given [application/json, text/plain, */*] and supported [application/json;charset=UTF-8, application/json, application/*+json, application/json, application/*+json] -2024-09-20 17:47:30.116 DEBUG 22604 --- [http-nio-8101-exec-1] m.m.a.RequestResponseBodyMethodProcessor : Writing [ApiRest(msg=ɹ, code=0, data={"realName":"A","roleIds":"sa","createTime":"2020-04-20 13:51:03", (truncated)...] -2024-09-20 17:47:30.117 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.c.http11.filters.GzipOutputFilter : Flushing the compression stream! -2024-09-20 17:47:30.117 DEBUG 22604 --- [http-nio-8101-exec-1] o.s.web.servlet.DispatcherServlet : Completed 200 OK -2024-09-20 17:47:30.118 DEBUG 22604 --- [http-nio-8101-exec-1] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:30.118 DEBUG 22604 --- [http-nio-8101-exec-1] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:30.120 DEBUG 22604 --- [http-nio-8101-exec-1] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:30.129 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:30.130 DEBUG 22604 --- [http-nio-8101-exec-7] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [977] -2024-09-20 17:47:30.130 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/js/11.js HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: */* -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: script -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:30.130 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -2024-09-20 17:47:30.131 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/js/11.js -2024-09-20 17:47:30.131 DEBUG 22604 --- [http-nio-8101-exec-7] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:30.131 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:30.133 DEBUG 22604 --- [http-nio-8101-exec-7] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:30.133 DEBUG 22604 --- [http-nio-8101-exec-7] o.s.web.servlet.DispatcherServlet : GET "/static/js/11.js", parameters={} -2024-09-20 17:47:30.133 DEBUG 22604 --- [http-nio-8101-exec-7] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/js/11.js -2024-09-20 17:47:30.134 DEBUG 22604 --- [http-nio-8101-exec-7] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:30.134 DEBUG 22604 --- [http-nio-8101-exec-7] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:30.135 DEBUG 22604 --- [http-nio-8101-exec-7] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:30.135 DEBUG 22604 --- [http-nio-8101-exec-7] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:30.136 DEBUG 22604 --- [http-nio-8101-exec-7] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:30.194 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read from buffer: [0] -2024-09-20 17:47:30.194 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read from buffer: [0] -2024-09-20 17:47:30.194 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:30.194 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read direct from socket: [1037] -2024-09-20 17:47:30.194 DEBUG 22604 --- [http-nio-8101-exec-3] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read direct from socket: [1037] -2024-09-20 17:47:30.194 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [1042] -2024-09-20 17:47:30.194 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/img/h5.ac62244a.png HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: image -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:30.196 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/img/mp.1a3d1b7d.jpg HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: image -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:30.196 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.coyote.http11.Http11InputBuffer : Received [GET /static/img/contact.22828125.png HTTP/1.1 -Host: localhost:8101 -Connection: keep-alive -sec-ch-ua: "Chromium";v="118", "Microsoft Edge";v="118", "Not=A?Brand";v="99" -sec-ch-ua-mobile: ?0 -User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76 -sec-ch-ua-platform: "Windows" -Accept: image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8 -Sec-Fetch-Site: same-origin -Sec-Fetch-Mode: no-cors -Sec-Fetch-Dest: image -Referer: http://localhost:8101/ -Accept-Encoding: gzip, deflate, br -Accept-Language: zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6 -Cookie: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -If-Modified-Since: Fri, 20 Sep 2024 08:59:07 GMT - -] -2024-09-20 17:47:30.196 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.t.util.http.Rfc6265CookieProcessor : Cookies: Parsing b[]: Idea-66120ba1=5460f4d9-4cd3-4908-8588-480faf5ef7c9; Studio-dd06f04e=9b20ac2c-7fbe-47de-936c-e8da0f8dd382; SID=s%3AnUr7rovDGKCcPGsxbS-xohDLqnplizud.iwiXd9kfotQ%2ByC3UinmuFNfd26VXAi4ej7alpIz6Y2w; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3MjY5MTIwNTAsInVzZXJuYW1lIjoiYWRtaW4ifQ.uEIaxEQ5GZN8lsAwWtq-mgUIoyfIXj70SO6rov6DIEk -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/img/h5.ac62244a.png -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/img/mp.1a3d1b7d.jpg -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /static/img/contact.22828125.png -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-3] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:30.197 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.catalina.realm.RealmBase : No applicable constraints defined -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-3] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-3] o.s.web.servlet.DispatcherServlet : GET "/static/img/mp.1a3d1b7d.jpg", parameters={} -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-5] o.s.web.servlet.DispatcherServlet : GET "/static/img/h5.ac62244a.png", parameters={} -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.tomcat.util.http.Parameters : Set encoding to UTF-8 -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-3] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/img/mp.1a3d1b7d.jpg -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-5] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/img/h5.ac62244a.png -2024-09-20 17:47:30.198 DEBUG 22604 --- [http-nio-8101-exec-10] o.s.web.servlet.DispatcherServlet : GET "/static/img/contact.22828125.png", parameters={} -2024-09-20 17:47:30.199 DEBUG 22604 --- [http-nio-8101-exec-10] pertySourcedRequestMappingHandlerMapping : looking up handler for path: /static/img/contact.22828125.png -2024-09-20 17:47:30.199 DEBUG 22604 --- [http-nio-8101-exec-10] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:30.200 DEBUG 22604 --- [http-nio-8101-exec-10] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:30.200 DEBUG 22604 --- [http-nio-8101-exec-3] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:30.201 DEBUG 22604 --- [http-nio-8101-exec-5] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"] -2024-09-20 17:47:30.201 DEBUG 22604 --- [http-nio-8101-exec-10] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read from buffer: [0] -2024-09-20 17:47:30.201 DEBUG 22604 --- [http-nio-8101-exec-10] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Read direct from socket: [0] -2024-09-20 17:47:30.202 DEBUG 22604 --- [http-nio-8101-exec-10] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@3769ec79:org.apache.tomcat.util.net.NioChannel@3d918709:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55551]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:30.202 DEBUG 22604 --- [http-nio-8101-exec-5] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:30.203 DEBUG 22604 --- [http-nio-8101-exec-3] o.s.web.servlet.DispatcherServlet : Completed 304 NOT_MODIFIED -2024-09-20 17:47:30.205 DEBUG 22604 --- [http-nio-8101-exec-5] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read from buffer: [0] -2024-09-20 17:47:30.205 DEBUG 22604 --- [http-nio-8101-exec-5] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Read direct from socket: [0] -2024-09-20 17:47:30.205 DEBUG 22604 --- [http-nio-8101-exec-3] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read from buffer: [0] -2024-09-20 17:47:30.205 DEBUG 22604 --- [http-nio-8101-exec-5] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@13fcc669:org.apache.tomcat.util.net.NioChannel@1904ad19:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55546]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:30.206 DEBUG 22604 --- [http-nio-8101-exec-3] org.apache.tomcat.util.net.NioEndpoint : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Read direct from socket: [0] -2024-09-20 17:47:30.206 DEBUG 22604 --- [http-nio-8101-exec-3] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@709f82a3:org.apache.tomcat.util.net.NioChannel@7009ff0f:java.nio.channels.SocketChannel[connected local=/0:0:0:0:0:0:0:1:8101 remote=/0:0:0:0:0:0:0:1:55545]], Status in: [OPEN_READ], State out: [OPEN] -2024-09-20 17:47:33.535 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_ClusterManager] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: Check-in complete. -2024-09-20 17:47:43.535 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_ClusterManager] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: Check-in complete. -2024-09-20 17:47:46.679 DEBUG 22604 --- [examScheduler_QuartzSchedulerThread] org.quartz.core.QuartzSchedulerThread : batch acquisition of 0 triggers -2024-09-20 17:47:53.538 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_ClusterManager] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: Check-in complete. -2024-09-20 17:48:03.539 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_ClusterManager] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: Check-in complete. -2024-09-20 17:48:11.502 DEBUG 22604 --- [examScheduler_QuartzSchedulerThread] org.quartz.core.QuartzSchedulerThread : batch acquisition of 0 triggers -2024-09-20 17:48:13.540 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_ClusterManager] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: Check-in complete. -2024-09-20 17:48:18.238 DEBUG 22604 --- [Catalina-utility-2] org.apache.catalina.session.ManagerBase : Start expire sessions StandardManager at 1726825698238 sessioncount 0 -2024-09-20 17:48:18.238 DEBUG 22604 --- [Catalina-utility-2] org.apache.catalina.session.ManagerBase : End expire sessions StandardManager processingTime 0 expired sessions: 0 -2024-09-20 17:48:23.541 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_ClusterManager] o.s.s.quartz.LocalDataSourceJobStore : ClusterManager: Check-in complete. -2024-09-20 17:48:23.607 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_MisfireHandler] o.s.s.quartz.LocalDataSourceJobStore : MisfireHandler: scanning for misfires... -2024-09-20 17:48:23.608 DEBUG 22604 --- [QuartzScheduler_examScheduler-lang1726825641205_MisfireHandler] o.s.s.quartz.LocalDataSourceJobStore : Found 0 triggers that missed their scheduled fire-time. diff --git a/exam-api/.idea/.gitignore b/exam-api/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/exam-api/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/exam-api/.idea/compiler.xml b/exam-api/.idea/compiler.xml deleted file mode 100644 index f78f415..0000000 --- a/exam-api/.idea/compiler.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/exam-api/.idea/misc.xml b/exam-api/.idea/misc.xml deleted file mode 100644 index d31b37a..0000000 --- a/exam-api/.idea/misc.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/exam-api/src/main/java/com/yf/exam/ability/Constant.java b/exam-api/src/main/java/com/yf/exam/ability/Constant.java index 50e754d..9880ea6 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/Constant.java +++ b/exam-api/src/main/java/com/yf/exam/ability/Constant.java @@ -1,18 +1,15 @@ -// 定义包路径,用于存放系统基础功能相关的类 package com.yf.exam.ability; + /** - * 通用常量类 - * 用于定义系统中使用的常量值,提供全局可访问的常量。 + * 通用常量 * @author bool */ public class Constant { + /** - * 文件上传路径的前缀常量 - * 用于指定上传文件的基础路径,所有上传的文件URL都会以这个路径开头。 - * 例如: /upload/file/example.jpg - * 这个前缀用于构建和解析文件的URL,以便在系统中统一管理和访问上传的文件。 + * 文件上传路径 */ public static final String FILE_PREFIX = "/upload/file/"; -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/job/enums/JobGroup.java b/exam-api/src/main/java/com/yf/exam/ability/job/enums/JobGroup.java index 058ab16..2159361 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/job/enums/JobGroup.java +++ b/exam-api/src/main/java/com/yf/exam/ability/job/enums/JobGroup.java @@ -1,19 +1,13 @@ -// 定义包路径,用于存放任务分组相关的枚举类 package com.yf.exam.ability.job.enums; /** - * 任务分组枚举接口 - * 定义系统中不同类型任务的分组标识 - * 这个接口用于集中管理任务分组的常量值,确保代码的一致性和可维护性。 - * + * 任务分组 * @author van */ public interface JobGroup { /** - * 系统任务的分组标识 - * 用于标识系统级别的定时任务,如系统维护、数据清理等。 - * 这个标识符用于在任务调度系统中区分系统级别的任务,便于管理和执行。 + * 系统任务 */ - String SYSTEM = "system"; // 系统任务组的标识符 -} \ No newline at end of file + String SYSTEM = "system"; +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/job/enums/JobPrefix.java b/exam-api/src/main/java/com/yf/exam/ability/job/enums/JobPrefix.java index dd51986..2536f0e 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/job/enums/JobPrefix.java +++ b/exam-api/src/main/java/com/yf/exam/ability/job/enums/JobPrefix.java @@ -1,19 +1,14 @@ -// 定义包路径,用于存放任务前缀相关的枚举类 package com.yf.exam.ability.job.enums; /** - * 任务前缀枚举接口 - * 定义系统中不同任务类型的前缀标识 - * 这个接口用于集中管理任务的前缀常量值,确保代码的一致性和可维护性。 - * + * 任务前缀 * @author bool */ public interface JobPrefix { /** - * 强制交卷任务的前缀标识 - * 用于标识与强制交卷相关的定时任务,方便在任务调度系统中识别和处理。 - * 例如:break_exam_12345 表示ID为12345的考试的强制交卷任务。 + * 强制交卷的 */ - String BREAK_EXAM = "break_exam_"; // 强制交卷任务的前缀标识符 -} \ No newline at end of file + String BREAK_EXAM = "break_exam_"; + +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/job/service/JobService.java b/exam-api/src/main/java/com/yf/exam/ability/job/service/JobService.java index 410c006..cb465de 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/job/service/JobService.java +++ b/exam-api/src/main/java/com/yf/exam/ability/job/service/JobService.java @@ -1,66 +1,53 @@ -// 定义包路径,用于存放任务服务接口 package com.yf.exam.ability.job.service; /** - * 任务业务接口类,用于定义任务相关的业务操作 - * 这个接口定义了定时任务的基本操作,包括添加、暂停、恢复和删除任务。 - * + * 任务业务类,用于动态处理任务信息 * @author bool * @date 2020/11/29 下午2:17 */ public interface JobService { + /** - * 任务数据的键名常量 - * 用于在任务的JobDataMap中存储和检索任务相关数据的键名。 + * 任务数据 */ - String TASK_DATA = "taskData"; // 用于存储任务相关数据的键名 + String TASK_DATA = "taskData"; /** * 添加定时任务 - * 方法用于根据给定的任务类、名称、cron表达式和任务数据,添加一个新的定时任务。 - * - * @param jobClass 任务类,指定任务的执行类 - * @param jobName 任务名称,用于唯一标识任务 - * @param cron cron表达式,用于指定任务的执行计划 - * @param data 任务数据,传递给任务执行时的参数 + * @param jobClass + * @param jobName + * @param cron + * @param data */ void addCronJob(Class jobClass, String jobName, String cron, String data); /** * 添加立即执行的任务 - * 方法用于根据给定的任务类、名称和任务数据,添加一个新的立即执行的任务。 - * - * @param jobClass 任务类,指定任务的执行类 - * @param jobName 任务名称,用于唯一标识任务 - * @param data 任务数据,传递给任务执行时的参数 + * @param jobClass + * @param jobName + * @param data */ void addCronJob(Class jobClass, String jobName, String data); /** * 暂停任务 - * 方法用于根据任务名称和任务组,暂停一个正在运行的定时任务。 - * - * @param jobName 任务名称 - * @param jobGroup 任务组 + * @param jobName + * @param jobGroup */ void pauseJob(String jobName, String jobGroup); /** * 恢复任务 - * 方法用于根据触发器名称和触发器组,恢复一个已暂停的定时任务。 - * - * @param triggerName 触发器名称 - * @param triggerGroup 触发器组 + * @param triggerName + * @param triggerGroup */ void resumeJob(String triggerName, String triggerGroup); /** - * 删除任务 - * 方法用于根据任务名称和任务组,删除一个定时任务,包括任务本身和相关的触发器。 - * - * @param jobName 任务名称 - * @param jobGroup 任务组 + * 删除job + * @param jobName + * @param jobGroup */ void deleteJob(String jobName, String jobGroup); -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/job/service/impl/JobServiceImpl.java b/exam-api/src/main/java/com/yf/exam/ability/job/service/impl/JobServiceImpl.java index b34ea8e..aafdfdb 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/job/service/impl/JobServiceImpl.java +++ b/exam-api/src/main/java/com/yf/exam/ability/job/service/impl/JobServiceImpl.java @@ -1,186 +1,123 @@ -// 定义包路径,用于存放任务服务实现类 package com.yf.exam.ability.job.service.impl; -// 导入所需的外部依赖包 -import com.alibaba.fastjson.JSON; // 用于JSON数据处理 -import com.baomidou.mybatisplus.core.toolkit.IdWorker; // 用于生成唯一ID -import com.yf.exam.ability.job.enums.JobGroup; // 任务分组枚举 -import com.yf.exam.ability.job.service.JobService; // 任务服务接口 -import lombok.extern.log4j.Log4j2; // 日志注解 -import org.quartz.*; // Quartz定时任务框架相关类 -import org.springframework.beans.factory.annotation.Autowired; // Spring自动注入注解 -import org.springframework.scheduling.quartz.SchedulerFactoryBean; // Quartz调度器工厂Bean -import org.springframework.stereotype.Service; // Spring服务注解 -import org.springframework.util.StringUtils; // Spring字符串工具类 +import com.alibaba.fastjson.JSON; +import com.baomidou.mybatisplus.core.toolkit.IdWorker; +import com.yf.exam.ability.job.enums.JobGroup; +import com.yf.exam.ability.job.service.JobService; +import lombok.extern.log4j.Log4j2; +import org.quartz.*; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.quartz.SchedulerFactoryBean; +import org.springframework.stereotype.Service; +import org.springframework.util.StringUtils; /** - * 定时任务服务实现类 - * 用于管理系统中的定时任务,包括添加、暂停、恢复和删除任务。 * @author bool */ -@Log4j2 // 启用Log4j2日志 -@Service // 标记为Spring服务组件 +@Log4j2 +@Service public class JobServiceImpl implements JobService { /** - * Quartz定时任务调度器 - * 用于管理和执行所有的定时任务 + * Quartz定时任务核心的功能实现类 */ - private Scheduler scheduler; // 定时任务调度器实例 + private Scheduler scheduler; /** - * 构造函数,注入SchedulerFactoryBean - * 从Spring容器中注入Quartz调度器工厂Bean,并从中获取调度器实例。 - * @param schedulerFactoryBean Quartz调度器工厂Bean + * 注入 + * @param schedulerFactoryBean */ public JobServiceImpl(@Autowired SchedulerFactoryBean schedulerFactoryBean) { - // 从工厂Bean中获取调度器实例 scheduler = schedulerFactoryBean.getScheduler(); } - /** - * 添加定时任务 - * 方法用于添加一个新的定时任务,包括cron表达式和立即执行两种情况。 - * - * @param jobClass 任务类,指定任务的执行类 - * @param jobName 任务名称,用于唯一标识任务 - * @param cron cron表达式,用于指定任务的执行计划 - * @param data 任务数据,传递给任务执行时的参数 - */ + @Override public void addCronJob(Class jobClass, String jobName, String cron, String data) { - // 设置任务组为系统任务组 + + String jobGroup = JobGroup.SYSTEM; - // 如果任务名为空,则自动生成任务名 + // 自动命名 if(StringUtils.isEmpty(jobName)){ - // 使用类名大写+下划线+唯一ID作为任务名 - jobName = jobClass.getSimpleName().toUpperCase() + "_" + IdWorker.getIdStr(); + jobName = jobClass.getSimpleName().toUpperCase() + "_"+IdWorker.getIdStr(); } try { - // 创建任务键,用于唯一标识任务 JobKey jobKey = JobKey.jobKey(jobName, jobGroup); - // 获取任务详情 JobDetail jobDetail = scheduler.getJobDetail(jobKey); - - // 如果任务已存在,则删除旧任务 if (jobDetail != null) { log.info("++++++++++任务:{} 已存在", jobName); this.deleteJob(jobName, jobGroup); } - // 记录任务构建信息 log.info("++++++++++构建任务:{},{},{},{},{} ", jobClass.toString(), jobName, jobGroup, cron, data); - // 构建新的任务详情 + //构建job信息 jobDetail = JobBuilder.newJob(jobClass).withIdentity(jobName, jobGroup).build(); - // 设置任务数据 + //用JopDataMap来传递数据 jobDetail.getJobDataMap().put(TASK_DATA, data); - // 声明触发器 + //按新的cronExpression表达式构建一个新的trigger Trigger trigger = null; - // 如果有cron表达式,则创建cron触发器 + // 有表达式的按表达式 if(!StringUtils.isEmpty(cron)){ log.info("+++++表达式执行:"+ JSON.toJSONString(jobDetail)); - // 创建cron调度构建器 + //表达式调度构建器 CronScheduleBuilder scheduleBuilder = CronScheduleBuilder.cronSchedule(cron); - // 构建触发器 - trigger = TriggerBuilder.newTrigger() - .withIdentity(jobName, jobGroup) - .withSchedule(scheduleBuilder) - .build(); + trigger = TriggerBuilder.newTrigger().withIdentity(jobName, jobGroup).withSchedule(scheduleBuilder).build(); }else{ - // 无cron表达式则立即执行一次 + // 无表达式则立即执行 log.info("+++++立即执行:"+ JSON.toJSONString(jobDetail)); - // 构建立即执行的触发器 - trigger = TriggerBuilder.newTrigger() - .withIdentity(jobName, jobGroup) - .startNow() - .build(); + trigger = TriggerBuilder.newTrigger().withIdentity(jobName, jobGroup).startNow().build(); } - // 调度任务 scheduler.scheduleJob(jobDetail, trigger); } catch (Exception e) { - // 打印异常堆栈信息 e.printStackTrace(); } } - /** - * 添加立即执行的任务 - * 方法用于添加一个不需要cron表达式,立即执行一次的任务。 - * - * @param jobClass 任务类 - * @param jobName 任务名称 - * @param data 任务数据 - */ + @Override public void addCronJob(Class jobClass, String jobName, String data) { - // 立即执行任务,不需要cron表达式,传入null + // 立即执行任务 this.addCronJob(jobClass, jobName, null, data); } - /** - * 暂停任务 - * 方法用于暂停一个正在运行的定时任务。 - * - * @param jobName 任务名称 - * @param jobGroup 任务组 - */ + @Override public void pauseJob(String jobName, String jobGroup) { try { - // 创建触发器键并暂停触发器 TriggerKey triggerKey = TriggerKey.triggerKey(jobName, jobGroup); scheduler.pauseTrigger(triggerKey); log.info("++++++++++暂停任务:{}", jobName); } catch (SchedulerException e) { - // 打印异常堆栈信息 e.printStackTrace(); } } - /** - * 恢复任务 - * 方法用于恢复一个已暂停的定时任务。 - * - * @param jobName 任务名称 - * @param jobGroup 任务组 - */ @Override public void resumeJob(String jobName, String jobGroup) { try { - // 创建触发器键并恢复触发器 TriggerKey triggerKey = TriggerKey.triggerKey(jobName, jobGroup); scheduler.resumeTrigger(triggerKey); log.info("++++++++++重启任务:{}", jobName); } catch (SchedulerException e) { - // 打印异常堆栈信息 e.printStackTrace(); } } - /** - * 删除任务 - * 方法用于删除一个定时任务,包括任务本身和相关的触发器。 - * - * @param jobName 任务名称 - * @param jobGroup 任务组 - */ @Override public void deleteJob(String jobName, String jobGroup) { try { - // 创建任务键并删除任务 JobKey jobKey = JobKey.jobKey(jobName,jobGroup); scheduler.deleteJob(jobKey); log.info("++++++++++删除任务:{}", jobKey); } catch (SchedulerException e) { - // 打印异常堆栈信息 e.printStackTrace(); } } -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/shiro/CNFilterFactoryBean.java b/exam-api/src/main/java/com/yf/exam/ability/shiro/CNFilterFactoryBean.java index 8d54a3e..3bc2190 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/shiro/CNFilterFactoryBean.java +++ b/exam-api/src/main/java/com/yf/exam/ability/shiro/CNFilterFactoryBean.java @@ -1,39 +1,29 @@ -// 定义包路径,用于存放自定义过滤器相关的类 package com.yf.exam.ability.shiro; -import org.apache.shiro.spring.web.ShiroFilterFactoryBean; // Shiro过滤器工厂类,用于配置Shiro过滤器 -import org.apache.shiro.web.filter.InvalidRequestFilter; // Shiro无效请求过滤器,用于处理无效请求 -import org.apache.shiro.web.filter.mgt.DefaultFilter; // Shiro默认过滤器,提供默认的过滤逻辑 -import org.apache.shiro.web.filter.mgt.FilterChainManager; // Shiro过滤器链管理器,管理过滤器链的配置 +import org.apache.shiro.spring.web.ShiroFilterFactoryBean; +import org.apache.shiro.web.filter.InvalidRequestFilter; +import org.apache.shiro.web.filter.mgt.DefaultFilter; +import org.apache.shiro.web.filter.mgt.FilterChainManager; -import javax.servlet.Filter; // Servlet过滤器接口,定义了过滤器的基本操作 -import java.util.Map; // Map集合类,用于存储键值对 +import javax.servlet.Filter; +import java.util.Map; /** - * 自定义过滤器工厂类,用于创建和管理Shiro过滤器链 - * 主要解决中文URL问题,如下载文件中包含中文字符时可能会返回400错误。 - * 例如:https://youdomain.com/upload/file/云帆考试系统用户手册.pdf 这样的URL可能会因为中文字符而导致问题。 + * 自定义过滤器,用于处理中文URL问题 + * 如:下载文件中包含中文会返回400错误,https://youdomain.com/upload/file/云帆考试系统用户手册.pdf * @author van */ public class CNFilterFactoryBean extends ShiroFilterFactoryBean { - /** - * 创建过滤器链管理器 - * 覆盖父类的创建方法,添加自定义的过滤器配置。 - * @return FilterChainManager 过滤器链管理器实例 - */ @Override protected FilterChainManager createFilterChainManager() { - FilterChainManager manager = super.createFilterChainManager(); // 调用父类方法创建过滤器链管理器 - - // 获取过滤器映射,以便修改特定过滤器的配置 - Map filterMap = manager.getFilters(); - // 获取无效请求过滤器实例 - Filter invalidRequestFilter = filterMap.get(DefaultFilter.invalidRequest.name()); + FilterChainManager manager = super.createFilterChainManager(); + // URL携带中文400,servletPath中文校验bug + Map filterMap = manager.getFilters(); + Filter invalidRequestFilter = filterMap.get(DefaultFilter.invalidRequest.name()); if (invalidRequestFilter instanceof InvalidRequestFilter) { - // 设置无效请求过滤器不阻止非ASCII字符,以允许中文URL ((InvalidRequestFilter) invalidRequestFilter).setBlockNonAscii(false); } - return manager; // 返回配置好的过滤器链管理器 + return manager; } -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/shiro/ShiroRealm.java b/exam-api/src/main/java/com/yf/exam/ability/shiro/ShiroRealm.java index d9b5844..76af5c5 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/shiro/ShiroRealm.java +++ b/exam-api/src/main/java/com/yf/exam/ability/shiro/ShiroRealm.java @@ -1,135 +1,131 @@ -// 定义包路径,用于存放Shiro领域相关的类 package com.yf.exam.ability.shiro; -import com.yf.exam.ability.shiro.jwt.JwtToken; // JWT令牌类 -import com.yf.exam.ability.shiro.jwt.JwtUtils; // JWT工具类 -import com.yf.exam.modules.sys.user.dto.response.SysUserLoginDTO; // 用户登录DTO -import com.yf.exam.modules.sys.user.service.SysUserRoleService; // 用户角色服务 -import com.yf.exam.modules.sys.user.service.SysUserService; // 用户服务 -import lombok.extern.slf4j.Slf4j; // 日志注解 -import org.apache.shiro.authc.AuthenticationException; // 认证异常 -import org.apache.shiro.authc.AuthenticationInfo; // 认证信息 -import org.apache.shiro.authc.AuthenticationToken; // 认证令牌 -import org.apache.shiro.authc.SimpleAuthenticationInfo; // 简单认证信息 -import org.apache.shiro.authz.AuthorizationInfo; // 授权信息 -import org.apache.shiro.authz.SimpleAuthorizationInfo; // 简单授权信息 -import org.apache.shiro.realm.AuthorizingRealm; // 授权领域 -import org.apache.shiro.subject.PrincipalCollection; // 主体集合 -import org.springframework.beans.factory.annotation.Autowired; // Spring自动注入注解 -import org.springframework.context.annotation.Lazy; // 延迟注入注解 -import org.springframework.stereotype.Component; // Spring组件注解 - -import java.util.HashSet; // 哈希集合 -import java.util.List; // 列表 + +import com.yf.exam.ability.shiro.jwt.JwtToken; +import com.yf.exam.ability.shiro.jwt.JwtUtils; +import com.yf.exam.modules.sys.user.dto.response.SysUserLoginDTO; +import com.yf.exam.modules.sys.user.service.SysUserRoleService; +import com.yf.exam.modules.sys.user.service.SysUserService; +import lombok.extern.slf4j.Slf4j; +import org.apache.shiro.authc.AuthenticationException; +import org.apache.shiro.authc.AuthenticationInfo; +import org.apache.shiro.authc.AuthenticationToken; +import org.apache.shiro.authc.SimpleAuthenticationInfo; +import org.apache.shiro.authz.AuthorizationInfo; +import org.apache.shiro.authz.SimpleAuthorizationInfo; +import org.apache.shiro.realm.AuthorizingRealm; +import org.apache.shiro.subject.PrincipalCollection; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Lazy; +import org.springframework.stereotype.Component; + +import java.util.HashSet; +import java.util.List; /** - * 用户登录鉴权和获取用户授权的Shiro领域类 - * 负责用户的认证和授权,是Shiro框架中的核心组件之一。 + * 用户登录鉴权和获取用户授权 * @author bool */ -@Component // 标记为Spring组件 -@Slf4j // 启用Slf4j日志 +@Component +@Slf4j public class ShiroRealm extends AuthorizingRealm { - @Autowired - @Lazy // 延迟注入,避免循环依赖 - private SysUserService sysUserService; // 用户服务 - - @Autowired - @Lazy // 延迟注入,避免循环依赖 - private SysUserRoleService sysUserRoleService; // 用户角色服务 - - /** - * 判断是否支持JWT令牌 - * 确定当前领域是否支持处理JWT令牌类型的认证。 - * @param token 认证令牌 - * @return 是否支持JWT令牌 - */ - @Override - public boolean supports(AuthenticationToken token) { - // 判断是否支持JWT令牌 - return token instanceof JwtToken; // 返回是否为JwtToken - } - - /** - * 详细授权认证 - * 获取用户的授权信息,包括角色和权限。 - * @param principals 主体集合 - * @return 授权信息 - */ - @Override - protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) { - String userId = null; // 用户ID - if (principals != null) { - SysUserLoginDTO user = (SysUserLoginDTO) principals.getPrimaryPrincipal(); // 获取用户信息 - userId = user.getId(); // 获取用户ID - } - SimpleAuthorizationInfo info = new SimpleAuthorizationInfo(); // 创建授权信息 - - // 查找用户角色 - List roles = sysUserRoleService.listRoles(userId); // 获取用户角色列表 - info.setRoles(new HashSet<>(roles)); // 设置角色 - - log.info("++++++++++校验详细权限完成"); // 日志记录 - return info; // 返回授权信息 - } - - /** - * 校验用户的账号密码是否正确 - * 根据传入的认证令牌,验证用户的账号密码。 - * @param auth 认证令牌 - * @return 认证信息 - * @throws AuthenticationException 认证异常 - */ - @Override - protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken auth) throws AuthenticationException { - String token = (String) auth.getCredentials(); // 获取token - if (token == null) { - throw new AuthenticationException("token为空!"); // 抛出异常 - } - - // 校验token有效性 - SysUserLoginDTO user = this.checkToken(token); // 验证token并获取用户信息 - return new SimpleAuthenticationInfo(user, token, getName()); // 返回认证信息 - } - - /** - * 校验Token的有效性 - * 验证JWT令牌的有效性,并获取对应的用户信息。 - * @param token JWT令牌 - * @return 用户登录DTO - * @throws AuthenticationException 认证异常 - */ - public SysUserLoginDTO checkToken(String token) throws AuthenticationException { - // 查询用户信息 - log.debug("++++++++++校验用户token: "+ token); // 日志记录 - - // 从token中获取用户名 - String username = JwtUtils.getUsername(token); // 获取用户名 - log.debug("++++++++++用户名: "+ username); // 日志记录 - - if (username == null) { - throw new AuthenticationException("无效的token"); // 抛出异常 - } - - // 查找登录用户对象 - SysUserLoginDTO user = sysUserService.token(token); // 获取用户信息 - - // 校验token是否失效 - if (!JwtUtils.verify(token, username)) { - throw new AuthenticationException("登陆失效,请重试登陆!"); // 抛出异常 - } - - return user; // 返回用户信息 - } - - /** - * 清除当前用户的权限认证缓存 - * 用于在用户信息变更后,清除缓存,确保权限信息的更新。 - * @param principals 主体集合 - */ - @Override + @Autowired + @Lazy + private SysUserService sysUserService; + + @Autowired + @Lazy + private SysUserRoleService sysUserRoleService; + + + @Override + public boolean supports(AuthenticationToken token) { + return token instanceof JwtToken; + } + + + /** + * 详细授权认证 + * @param principals + * @return + */ + @Override + protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) { + + String userId = null; + if (principals != null) { + SysUserLoginDTO user = (SysUserLoginDTO) principals.getPrimaryPrincipal(); + userId = user.getId(); + } + SimpleAuthorizationInfo info = new SimpleAuthorizationInfo(); + + // 查找用户角色 + List roles = sysUserRoleService.listRoles(userId); + info.setRoles(new HashSet<>(roles)); + + log.info("++++++++++校验详细权限完成"); + return info; + } + + /** + * 校验用户的账号密码是否正确 + * @param auth + * @return + * @throws AuthenticationException + */ + @Override + protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken auth) throws AuthenticationException { + String token = (String) auth.getCredentials(); + if (token == null) { + throw new AuthenticationException("token为空!"); + } + + // 校验token有效性 + SysUserLoginDTO user = this.checkToken(token); + return new SimpleAuthenticationInfo(user, token, getName()); + } + + + /** + * 校验Token的有效性 + * @param token + * @return + * @throws AuthenticationException + */ + public SysUserLoginDTO checkToken(String token) throws AuthenticationException { + + // 查询用户信息 + log.debug("++++++++++校验用户token: "+ token); + + // 从token中获取用户名 + String username = JwtUtils.getUsername(token); + log.debug("++++++++++用户名: "+ username); + + if (username == null) { + throw new AuthenticationException("无效的token"); + } + + // 查找登录用户对象 + SysUserLoginDTO user = sysUserService.token(token); + + // 校验token是否失效 + if (!JwtUtils.verify(token, username)) { + throw new AuthenticationException("登陆失效,请重试登陆!"); + } + + return user; + } + + + + /** + * 清除当前用户的权限认证缓存 + * @param principals + */ + @Override public void clearCache(PrincipalCollection principals) { - super.clearCache(principals); // 清除缓存 + super.clearCache(principals); } -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/shiro/aop/JwtFilter.java b/exam-api/src/main/java/com/yf/exam/ability/shiro/aop/JwtFilter.java index 1fe9ff2..88cf448 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/shiro/aop/JwtFilter.java +++ b/exam-api/src/main/java/com/yf/exam/ability/shiro/aop/JwtFilter.java @@ -1,84 +1,53 @@ -// 定义包路径,用于存放Shiro JWT认证过滤器相关的类 package com.yf.exam.ability.shiro.aop; -// 导入所需的外部依赖包 -import com.yf.exam.ability.shiro.jwt.JwtToken; // JWT令牌类 -import com.yf.exam.aspect.utils.InjectUtils; // 工具类,用于注入错误信息 -import com.yf.exam.modules.Constant; // 常量类 -import lombok.extern.slf4j.Slf4j; // 日志注解 -import org.apache.shiro.web.filter.authc.BasicHttpAuthenticationFilter; // Shiro基础认证过滤器 -import javax.servlet.ServletRequest; // Servlet请求接口 -import javax.servlet.ServletResponse; // Servlet响应接口 -import javax.servlet.http.HttpServletRequest; // HTTP请求类 -import javax.servlet.http.HttpServletResponse; // HTTP响应类 +import com.yf.exam.ability.shiro.jwt.JwtToken; +import com.yf.exam.aspect.utils.InjectUtils; +import com.yf.exam.modules.Constant; +import lombok.extern.slf4j.Slf4j; +import org.apache.shiro.web.filter.authc.BasicHttpAuthenticationFilter; + +import javax.servlet.ServletRequest; +import javax.servlet.ServletResponse; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; /** - * JWT认证过滤器 - * 用于处理基于JWT的身份认证,确保只有持有有效JWT令牌的请求才能访问受保护的资源。 + * 鉴权登录拦截器 * @author bool */ -@Slf4j // 启用Slf4j日志 +@Slf4j public class JwtFilter extends BasicHttpAuthenticationFilter { - /** - * 判断是否允许访问 - * 所有的请求都会经过这个方法,用于判断是否需要登录认证。 - * 如果请求不需要认证(如访问公开资源),则直接返回true允许访问; - * 如果需要认证,则尝试执行登录认证,根据认证结果决定是否允许访问。 - * - * @param request 请求对象 - * @param response 响应对象 - * @param mappedValue 映射值 - * @return 是否允许访问 - */ - @Override - protected boolean isAccessAllowed(ServletRequest request, ServletResponse response, Object mappedValue) { - try { - // 尝试执行登录认证 - executeLogin(request, response); - // 认证成功返回true - return true; - } catch (Exception e) { - // 认证失败时写入错误信息 - InjectUtils.restError((HttpServletResponse) response); - // 返回false表示不允许访问 - return false; - } - } + /** + * 执行登录认证 + * @param request + * @param response + * @param mappedValue + * @return + */ + @Override + protected boolean isAccessAllowed(ServletRequest request, ServletResponse response, Object mappedValue) { + try { + executeLogin(request, response); + return true; + } catch (Exception e) { + // 写出统一错误信息 + InjectUtils.restError((HttpServletResponse) response); + return false; + } + } - /** - * 执行登录认证 - * 从请求头中获取JWT token并进行认证,如果认证成功,则请求可以继续执行; - * 如果认证失败(如token无效或过期),则抛出异常,由isAccessAllowed方法处理。 - * - * @param request 请求对象 - * @param response 响应对象 - * @return 是否认证成功 - */ - @Override - protected boolean executeLogin(ServletRequest request, ServletResponse response) throws Exception { - // 将ServletRequest转换为HttpServletRequest - HttpServletRequest httpServletRequest = (HttpServletRequest) request; - // 从请求头中获取token - String token = httpServletRequest.getHeader(Constant.TOKEN); - // 如果token为空,则抛出异常 - if (token == null || "".equals(token)) { - throw new Exception("token不能为空"); - } + @Override + protected boolean executeLogin(ServletRequest request, ServletResponse response) throws Exception { + HttpServletRequest httpServletRequest = (HttpServletRequest) request; + String token = httpServletRequest.getHeader(Constant.TOKEN); - // 创建JWT token对象 - JwtToken jwtToken = new JwtToken(token); - // 提交给realm进行登录认证 - try { - getSubject(request, response).login(jwtToken); - // 如果没有抛出异常则表示登录成功 - return true; - } catch (Exception e) { - // 登录失败,记录日志 - log.error("JWT认证失败", e); - throw e; - } - } -} \ No newline at end of file + JwtToken jwtToken = new JwtToken(token); + // 提交给realm进行登入,如果错误他会抛出异常并被捕获 + getSubject(request, response).login(jwtToken); + // 如果没有抛出异常则代表登入成功,返回true + return true; + } +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/shiro/jwt/JwtToken.java b/exam-api/src/main/java/com/yf/exam/ability/shiro/jwt/JwtToken.java index 1e1fe4c..d5baab3 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/shiro/jwt/JwtToken.java +++ b/exam-api/src/main/java/com/yf/exam/ability/shiro/jwt/JwtToken.java @@ -1,50 +1,33 @@ -// 定义包路径,用于存放JWT令牌相关的类 package com.yf.exam.ability.shiro.jwt; - -import lombok.Data; // Lombok注解,用于生成getter和setter -import org.apache.shiro.authc.AuthenticationToken; // Shiro认证令牌接口 + +import lombok.Data; +import org.apache.shiro.authc.AuthenticationToken; /** - * JWT令牌实现类 - * 实现Shiro的AuthenticationToken接口,用于JWT认证 * @author bool */ -@Data // 自动生成getter和setter方法 +@Data public class JwtToken implements AuthenticationToken { - private static final long serialVersionUID = 1L; // 序列化ID + private static final long serialVersionUID = 1L; /** - * JWT的字符串token - * 用于存储实际的JWT令牌字符串 + * JWT的字符token */ - private String token; // JWT令牌字符串 + private String token; + - /** - * 构造函数 - * @param token JWT令牌字符串 - */ public JwtToken(String token) { - this.token = token; // 设置token + this.token = token; } - /** - * 获取身份信息 - * 实现AuthenticationToken接口的方法 - * @return 返回token作为身份信息 - */ @Override public Object getPrincipal() { - return token; // 返回token作为身份信息 + return token; } - /** - * 获取凭证信息 - * 实现AuthenticationToken接口的方法 - * @return 返回token作为凭证信息 - */ @Override public Object getCredentials() { - return token; // 返回token作为凭证信息 + return token; } -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/shiro/jwt/JwtUtils.java b/exam-api/src/main/java/com/yf/exam/ability/shiro/jwt/JwtUtils.java index ec2d907..4a66759 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/shiro/jwt/JwtUtils.java +++ b/exam-api/src/main/java/com/yf/exam/ability/shiro/jwt/JwtUtils.java @@ -1,15 +1,14 @@ -// 定义包路径,用于存放JWT工具类 package com.yf.exam.ability.shiro.jwt; -import com.auth0.jwt.JWT; // JWT工具类 -import com.auth0.jwt.JWTVerifier; // JWT验证器 -import com.auth0.jwt.algorithms.Algorithm; // JWT算法 -import com.auth0.jwt.exceptions.JWTDecodeException; // JWT解码异常 -import com.auth0.jwt.interfaces.DecodedJWT; // 解码后的JWT -import com.yf.exam.core.utils.file.Md5Util; // MD5工具类 +import com.auth0.jwt.JWT; +import com.auth0.jwt.JWTVerifier; +import com.auth0.jwt.algorithms.Algorithm; +import com.auth0.jwt.exceptions.JWTDecodeException; +import com.auth0.jwt.interfaces.DecodedJWT; +import com.yf.exam.core.utils.file.Md5Util; -import java.util.Calendar; // 日历类 -import java.util.Date; // 日期类 +import java.util.Calendar; +import java.util.Date; /** * JWT工具类 @@ -20,74 +19,81 @@ public class JwtUtils { /** * 有效期24小时 */ - private static final long EXPIRE_TIME = 24 * 60 * 60 * 1000; // JWT有效期 + private static final long EXPIRE_TIME = 24 * 60 * 60 * 1000; + /** * 校验是否正确 - * @param token JWT令牌 - * @param username 用户名 - * @return 是否有效 + * @param token + * @param username + * @return */ public static boolean verify(String token, String username) { try { // 根据密码生成JWT效验器 - Algorithm algorithm = Algorithm.HMAC256(encryptSecret(username)); // 创建算法 - JWTVerifier verifier = JWT.require(algorithm) // 创建验证器 - .withClaim("username", username) // 添加用户名声明 - .build(); // 构建验证器 + Algorithm algorithm = Algorithm.HMAC256(encryptSecret(username)); + JWTVerifier verifier = JWT.require(algorithm) + .withClaim("username", username) + .build(); // 效验TOKEN - verifier.verify(token); // 验证token - return true; // 返回验证成功 + verifier.verify(token); + return true; } catch (Exception exception) { - return false; // 返回验证失败 + return false; } } + + + + /** * 从Token中解密获得用户名 - * @param token JWT令牌 - * @return 用户名 + * @param token + * @return */ public static String getUsername(String token) { try { - DecodedJWT jwt = JWT.decode(token); // 解码JWT - return jwt.getClaim("username").asString(); // 获取用户名 + DecodedJWT jwt = JWT.decode(token); + return jwt.getClaim("username").asString(); } catch (JWTDecodeException e) { - return null; // 返回null表示解码失败 + return null; } } /** * 生成JWT Token字符串 - * @param username 用户名 - * @return JWT令牌字符串 + * @param username + * @return */ public static String sign(String username) { - Date date = new Date(System.currentTimeMillis() + EXPIRE_TIME); // 设置过期时间 - Algorithm algorithm = Algorithm.HMAC256(encryptSecret(username)); // 创建算法 + Date date = new Date(System.currentTimeMillis() + EXPIRE_TIME); + Algorithm algorithm = Algorithm.HMAC256(encryptSecret(username)); // 附带username信息 - return JWT.create() // 创建JWT - .withClaim("username", username) // 添加用户名声明 - .withExpiresAt(date).sign(algorithm); // 设置过期时间并签名 + return JWT.create() + .withClaim("username", username) + .withExpiresAt(date).sign(algorithm); + } /** * 根据用户名和秘钥,生成一个新的秘钥,用于JWT加强一些安全性 - * @param userName 用户名 - * @return 加密后的秘钥 + * @param userName + * @return */ private static String encryptSecret(String userName){ + // 一个简单的登录规则,用户名+当前月份为加密串,意思每个月会变,要重新登录 // 可自行修改此规则 - Calendar cl = Calendar.getInstance(); // 获取当前日历 - cl.setTimeInMillis(System.currentTimeMillis()); // 设置当前时间 - StringBuffer sb = new StringBuffer(userName) // 创建字符串缓冲区 - .append("&") // 添加分隔符 - .append(cl.get(Calendar.MONTH)); // 添加当前月份 + Calendar cl = Calendar.getInstance(); + cl.setTimeInMillis(System.currentTimeMillis()); + StringBuffer sb = new StringBuffer(userName) + .append("&") + .append(cl.get(Calendar.MONTH)); // 获取MD5 - String secret = Md5Util.md5(sb.toString()); // 生成MD5秘钥 + String secret = Md5Util.md5(sb.toString()); - return Md5Util.md5(userName + "&" + secret); // 返回加密后的秘钥 + return Md5Util.md5(userName + "&" + secret); } -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/upload/config/UploadConfig.java b/exam-api/src/main/java/com/yf/exam/ability/upload/config/UploadConfig.java index a0cb14b..e35d73d 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/upload/config/UploadConfig.java +++ b/exam-api/src/main/java/com/yf/exam/ability/upload/config/UploadConfig.java @@ -1,36 +1,32 @@ -// 定义包路径,用于存放文件上传配置相关的类 package com.yf.exam.ability.upload.config; -import lombok.Data; // Lombok注解,用于简化数据类的编写,自动生成getter和setter -import org.springframework.boot.context.properties.ConfigurationProperties; // Spring Boot配置属性注解,用于将配置文件中的属性绑定到Java对象 -import org.springframework.context.annotation.Configuration; // Spring配置注解,标记为配置类 +import lombok.Data; +import org.springframework.boot.context.properties.ConfigurationProperties; +import org.springframework.context.annotation.Configuration; + /** - * 文件上传配置类 - * 用于定义文件上传的相关配置,如访问路径、物理目录和允许的文件后缀等。 - * 这些配置通常在application.yml或application.properties中定义,并由Spring Boot自动加载。 + * 文件上传配置 * @author van */ -@Data // 使用Lombok注解,自动生成getter和setter方法 -@Configuration // 标记为Spring配置类,表示这是一个配置类 -@ConfigurationProperties(prefix = "conf.upload") // 指定配置文件中属性的前缀,这里是"conf.upload" +@Data +@Configuration +@ConfigurationProperties(prefix = "conf.upload") public class UploadConfig { /** - * 文件访问路径 - * 定义文件上传后对外访问的基础URL路径。 + * 访问路径 */ - private String url; // 文件访问的URL + private String url; /** - * 文件存储物理目录 - * 定义文件上传后在服务器上的存储路径。 + * 物理目录 */ - private String dir; // 文件存储的物理目录 + private String dir; /** - * 允许的文件后缀 - * 定义允许上传的文件类型,通过文件后缀来限制。 + * 允许的后缀 */ - private String[] allowExtensions; // 允许上传的文件后缀 -} \ No newline at end of file + private String [] allowExtensions; + +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/upload/controller/UploadController.java b/exam-api/src/main/java/com/yf/exam/ability/upload/controller/UploadController.java index 1849a4b..4c85250 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/upload/controller/UploadController.java +++ b/exam-api/src/main/java/com/yf/exam/ability/upload/controller/UploadController.java @@ -1,62 +1,57 @@ -// 定义包路径,用于存放文件上传下载请求类 package com.yf.exam.ability.upload.controller; -import com.yf.exam.ability.Constant; // 常量类,包含系统配置的常量值 -import com.yf.exam.ability.upload.dto.UploadReqDTO; // 文件上传请求DTO,封装上传文件所需的数据 -import com.yf.exam.ability.upload.dto.UploadRespDTO; // 文件上传响应DTO,封装上传文件后的响应数据 -import com.yf.exam.ability.upload.service.UploadService; // 文件上传服务,提供文件上传和下载的业务逻辑 -import com.yf.exam.core.api.ApiRest; // API响应类,封装统一的API响应格式 -import com.yf.exam.core.api.controller.BaseController; // 基础控制器,提供基础的控制器功能 -import io.swagger.annotations.Api; // Swagger API注解,用于描述API信息 -import io.swagger.annotations.ApiOperation; // Swagger API操作注解,用于描述单个API操作 -import lombok.extern.log4j.Log4j2; // 日志注解,提供日志功能 -import org.springframework.beans.factory.annotation.Autowired; // Spring自动注入注解,用于注入Spring管理的Bean -import org.springframework.web.bind.annotation.GetMapping; // GET请求映射注解,用于映射GET请求到方法 -import org.springframework.web.bind.annotation.ModelAttribute; // 模型属性注解,用于将请求参数绑定到模型对象 -import org.springframework.web.bind.annotation.PostMapping; // POST请求映射注解,用于映射POST请求到方法 -import org.springframework.web.bind.annotation.RestController; // REST控制器注解,标记为REST风格的控制器 -import javax.servlet.http.HttpServletRequest; // HTTP请求类,表示HTTP请求 -import javax.servlet.http.HttpServletResponse; // HTTP响应类,表示HTTP响应 +import com.yf.exam.ability.Constant; +import com.yf.exam.ability.upload.dto.UploadReqDTO; +import com.yf.exam.ability.upload.dto.UploadRespDTO; +import com.yf.exam.ability.upload.service.UploadService; +import com.yf.exam.core.api.ApiRest; +import com.yf.exam.core.api.controller.BaseController; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import lombok.extern.log4j.Log4j2; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.ModelAttribute; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RestController; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; /** * 本地文件上传下载请求类 - * 负责处理文件上传和下载的请求,提供RESTful API接口。 * @author bool */ -@Log4j2 // 启用Log4j2日志 -@Api(tags = {"文件上传"}) // Swagger API标签,用于分类API -@RestController // 标记为REST控制器,表示该类是一个REST风格的控制器 +@Log4j2 +@Api(tags = {"文件上传"}) +@RestController public class UploadController extends BaseController { @Autowired - private UploadService uploadService; // 文件上传服务,自动注入 + private UploadService uploadService; /** * 文件上传 - * 处理文件上传请求,接收上传文件的数据,并返回上传结果。 - * - * @param reqDTO 上传请求DTO,包含上传文件所需的数据 - * @return 上传响应,封装上传文件后的响应数据 + * @param reqDTO + * @return */ - @PostMapping("/common/api/file/upload") // POST请求映射,指定请求路径 - @ApiOperation(value = "文件上传", notes = "此接口较为特殊,参数都通过表单方式提交,而非JSON") // Swagger API操作描述 + @PostMapping("/common/api/file/upload") + @ApiOperation(value = "文件上传", notes = "此接口较为特殊,参数都通过表单方式提交,而非JSON") public ApiRest upload(@ModelAttribute UploadReqDTO reqDTO) { // 上传并返回URL - UploadRespDTO respDTO = uploadService.upload(reqDTO); // 调用上传服务 - return super.success(respDTO); // 返回成功响应 + UploadRespDTO respDTO = uploadService.upload(reqDTO); + return super.success(respDTO); } /** * 独立文件下载 - * 处理文件下载请求,根据请求参数返回对应的文件。 - * - * @param request HTTP请求,包含下载请求的信息 - * @param response HTTP响应,用于返回文件内容 + * @param request + * @param response */ - @GetMapping(Constant.FILE_PREFIX+"**") // GET请求映射,指定请求路径前缀 - @ApiOperation(value = "文件下载", notes = "文件下载") // Swagger API操作描述 + @GetMapping(Constant.FILE_PREFIX+"**") + @ApiOperation(value = "文件下载", notes = "文件下载") public void download(HttpServletRequest request, HttpServletResponse response) { - uploadService.download(request, response); // 调用下载服务 + uploadService.download(request, response); } -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/upload/dto/UploadReqDTO.java b/exam-api/src/main/java/com/yf/exam/ability/upload/dto/UploadReqDTO.java index 0e4a0f1..df2f286 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/upload/dto/UploadReqDTO.java +++ b/exam-api/src/main/java/com/yf/exam/ability/upload/dto/UploadReqDTO.java @@ -1,26 +1,22 @@ -// 定义包路径,用于存放文件上传请求DTO package com.yf.exam.ability.upload.dto; -import com.yf.exam.core.api.dto.BaseDTO; // 导入基础DTO类,提供通用的数据传输对象功能 -import io.swagger.annotations.ApiModel; // 导入Swagger API模型注解,用于描述API模型 -import io.swagger.annotations.ApiModelProperty; // 导入Swagger API模型属性注解,用于描述API模型的属性 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写,自动生成getter和setter -import org.springframework.web.multipart.MultipartFile; // 导入Spring文件上传类,用于处理上传的文件 + +import com.yf.exam.core.api.dto.BaseDTO; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import org.springframework.web.multipart.MultipartFile; /** * 文件上传请求类 - * 用于封装文件上传请求中的数据,包括上传的文件内容。 - * @author van + * @author * @date 2019-12-26 17:54 */ -@Data // 使用Lombok注解,自动生成getter和setter方法 -@ApiModel(value="文件上传参数", description="文件上传参数") // 使用Swagger注解,描述API模型 +@Data +@ApiModel(value="文件上传参数", description="文件上传参数") public class UploadReqDTO extends BaseDTO { - /** - * 上传文件内容 - * 用于存储上传文件的数据,包括文件名、文件类型、文件大小等信息。 - */ - @ApiModelProperty(value = "上传文件内容", required=true) // 使用Swagger注解,描述API模型属性 - private MultipartFile file; // 上传的文件内容 -} \ No newline at end of file + @ApiModelProperty(value = "上传文件内容", required=true) + private MultipartFile file; + +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/upload/dto/UploadRespDTO.java b/exam-api/src/main/java/com/yf/exam/ability/upload/dto/UploadRespDTO.java index cbce697..b91106e 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/upload/dto/UploadRespDTO.java +++ b/exam-api/src/main/java/com/yf/exam/ability/upload/dto/UploadRespDTO.java @@ -1,28 +1,23 @@ -// 定义包路径,用于存放文件上传响应DTO package com.yf.exam.ability.upload.dto; -import com.yf.exam.core.api.dto.BaseDTO; // 导入基础DTO类,提供通用的数据传输对象功能 -import io.swagger.annotations.ApiModel; // 导入Swagger API模型注解,用于描述API模型 -import io.swagger.annotations.ApiModelProperty; // 导入Swagger API模型属性注解,用于描述API模型的属性 -import lombok.AllArgsConstructor; // 导入Lombok注解,用于生成全参构造函数 -import lombok.Data; // 导入Lombok注解,用于生成getter和setter方法 -import lombok.NoArgsConstructor; // 导入Lombok注解,用于生成无参构造函数 +import com.yf.exam.core.api.dto.BaseDTO; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; /** - * 文件上传响应DTO - * 用于封装文件上传操作的结果,包括上传后的文件URL等信息。 + * 上传文件结果 * @author bool */ -@Data // 使用Lombok注解,自动生成getter和setter方法 -@AllArgsConstructor // 使用Lombok注解,生成全参构造函数 -@NoArgsConstructor // 使用Lombok注解,生成无参构造函数 -@ApiModel(value="文件上传响应", description="文件上传响应") // 使用Swagger注解,描述API模型 +@Data +@AllArgsConstructor +@NoArgsConstructor +@ApiModel(value="文件上传响应", description="文件上传响应") public class UploadRespDTO extends BaseDTO { - /** - * 上传后的完整URL地址 - * 存储文件上传成功后,文件的完整访问URL地址。 - */ - @ApiModelProperty(value = "上传后的完整的URL地址", required=true) // 使用Swagger注解,描述API模型属性 - private String url; // 上传后的完整URL地址 -} \ No newline at end of file + @ApiModelProperty(value = "上传后的完整的URL地址", required=true) + private String url; + +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/upload/service/UploadService.java b/exam-api/src/main/java/com/yf/exam/ability/upload/service/UploadService.java index 44617b6..ef516ec 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/upload/service/UploadService.java +++ b/exam-api/src/main/java/com/yf/exam/ability/upload/service/UploadService.java @@ -1,62 +1,30 @@ package com.yf.exam.ability.upload.service; -// 这一行声明了该Java类所属的包名为com.yf.exam.ability.upload.service。 -// 包用于组织和管理相关的Java类,避免类名冲突,方便代码的模块化和复用。 -import com.yf.exam.ability.upload.dto.UploadReqDTO; // 导入文件上传请求DTO -// 导入了名为UploadReqDTO的类,它位于com.yf.exam.ability.upload.dto包下。 -// 这个类通常用于封装文件上传请求相关的数据,比如要上传的文件信息、上传的相关参数等。 +import com.yf.exam.ability.upload.dto.UploadReqDTO; +import com.yf.exam.ability.upload.dto.UploadRespDTO; -import com.yf.exam.ability.upload.dto.UploadRespDTO; // 导入文件上传响应DTO -// 导入了名为UploadRespDTO的类,同样位于com.yf.exam.ability.upload.dto包下。 -// 它主要用于封装文件上传操作完成后返回的响应数据,例如上传是否成功的标识、上传后的文件存储路径等信息。 - -import javax.servlet.http.HttpServletRequest; // 导入HTTP请求类 -// 引入了Java EE中用于处理HTTP请求的标准类HttpServletRequest。 -// 在文件下载等操作中,会通过这个类获取客户端发送过来的关于下载请求的各种信息,如请求的URL、请求头信息等。 - -import javax.servlet.http.HttpServletResponse; // 导入HTTP响应类 -// 引入了Java EE中用于处理HTTP响应的标准类HttpServletResponse。 -// 在文件下载操作中,会使用这个类来设置响应的状态码、响应头信息以及将文件内容返回给客户端。 +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; /** - * 文件上传服务接口 - * 定义文件上传和下载的相关业务操作,提供统一的接口供外部调用。 - * @author bool + * 阿里云OSS业务类 + * @author bool * @date 2019-07-12 16:45 */ -// 这是一个Java接口的文档注释,用于描述该接口的整体功能和用途。 -// 说明这个接口主要是用来定义与文件上传和下载相关的业务操作方法, -// 并且其他类可以通过实现这个接口来提供具体的实现,以达到统一调用的目的。 -// 同时标注了接口的作者是bool,创建日期是2019年7月12日16:45。 - public interface UploadService { - // 这里定义了一个名为UploadService的公共接口。 - // 接口中只包含方法的声明,不包含方法的具体实现,具体实现由实现该接口的类来完成。 /** * 文件上传 - * 方法用于处理文件上传请求,接收上传文件的数据,并返回上传结果。 - * - * @param reqDTO 上传请求DTO,包含上传文件所需的数据 - * @return 上传响应DTO,封装上传文件后的响应数据 + * @param reqDTO + * @return */ - // 这是接口中定义的一个方法声明,名为upload。 - // 它的功能是处理文件上传请求,通过接收传入的UploadReqDTO对象(其中包含了上传文件所需的各种数据), - // 然后在具体实现类中执行实际的上传操作,最后返回一个UploadRespDTO对象,该对象封装了上传文件后的响应数据。 - UploadRespDTO upload(UploadReqDTO reqDTO); /** - * 文件下载 - * 方法用于处理文件下载请求,根据请求参数返回对应的文件。 - * - * @param request HTTP请求,包含下载请求的信息 - * @param response HTTP响应,用于返回文件内容 + * 下载文件 + * @param request + * @param response */ - // 这是接口中定义的另一个方法声明,名为download。 - // 它用于处理文件下载请求,会接收一个HttpServletRequest对象(其中包含了客户端发送的关于下载请求的所有信息) - // 和一个HttpServletResponse对象(用于设置响应相关的信息并将文件内容返回给客户端), - // 在具体实现类中根据请求参数找到对应的要下载的文件,并通过HttpServletResponse将文件内容返回给客户端。 - void download(HttpServletRequest request, HttpServletResponse response); -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/upload/service/impl/UploadServiceImpl.java b/exam-api/src/main/java/com/yf/exam/ability/upload/service/impl/UploadServiceImpl.java index 6d1a60e..ef70f40 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/upload/service/impl/UploadServiceImpl.java +++ b/exam-api/src/main/java/com/yf/exam/ability/upload/service/impl/UploadServiceImpl.java @@ -1,143 +1,135 @@ -// 定义包路径,用于存放文件上传服务实现类 package com.yf.exam.ability.upload.service.impl; -import com.yf.exam.ability.Constant; // 导入常量类,包含系统配置的常量值 -import com.yf.exam.ability.upload.config.UploadConfig; // 导入文件上传配置类,包含文件上传的相关配置 -import com.yf.exam.ability.upload.dto.UploadReqDTO; // 导入文件上传请求DTO,封装上传文件所需的数据 -import com.yf.exam.ability.upload.dto.UploadRespDTO; // 导入文件上传响应DTO,封装上传文件后的响应数据 -import com.yf.exam.ability.upload.service.UploadService; // 导入文件上传服务接口,定义文件上传的相关业务操作 -import com.yf.exam.ability.upload.utils.FileUtils; // 导入文件工具类,提供文件操作的辅助功能 -import com.yf.exam.core.exception.ServiceException; // 导入服务异常类,处理业务逻辑中的异常情况 -import lombok.extern.log4j.Log4j2; // 导入日志注解,提供日志功能 -import org.apache.commons.io.FilenameUtils; // 导入文件名工具类,提供文件名和扩展名操作的辅助功能 -import org.springframework.beans.factory.annotation.Autowired; // 导入Spring自动注入注解,用于注入Spring管理的Bean -import org.springframework.stereotype.Service; // 导入Spring服务注解,标记为服务组件 -import org.springframework.util.FileCopyUtils; // 导入文件复制工具类,提供文件复制的功能 -import org.springframework.web.multipart.MultipartFile; // 导入Spring文件上传类,处理上传的文件 - -import javax.servlet.http.HttpServletRequest; // 导入HTTP请求类,表示HTTP请求 -import javax.servlet.http.HttpServletResponse; // 导入HTTP响应类,表示HTTP响应 -import java.io.FileOutputStream; // 导入文件输出流,用于将文件内容写入文件 -import java.io.IOException; // 导入IO异常类,处理IO操作中的异常情况 -import java.io.UnsupportedEncodingException; // 导入不支持的编码异常类,处理编码问题 -import java.net.URLDecoder; // 导入URL解码类,用于解码URL -import java.util.regex.Matcher; // 导入正则表达式匹配器,用于匹配正则表达式 -import java.util.regex.Pattern; // 导入正则表达式类,用于编译正则表达式 +import com.yf.exam.ability.Constant; +import com.yf.exam.ability.upload.config.UploadConfig; +import com.yf.exam.ability.upload.dto.UploadReqDTO; +import com.yf.exam.ability.upload.dto.UploadRespDTO; +import com.yf.exam.ability.upload.service.UploadService; +import com.yf.exam.ability.upload.utils.FileUtils; +import com.yf.exam.core.exception.ServiceException; +import lombok.extern.log4j.Log4j2; +import org.apache.commons.io.FilenameUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.util.FileCopyUtils; +import org.springframework.web.multipart.MultipartFile; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + /** * 文件上传业务类 - * 实现文件上传服务接口,提供文件上传和下载的业务逻辑。 * @author bool * @date 2019-07-30 21:02 */ -@Log4j2 // 使用Log4j2日志注解,启用日志功能 -@Service // 使用Spring服务注解,标记为服务组件 +@Log4j2 +@Service public class UploadServiceImpl implements UploadService { @Autowired - private UploadConfig conf; // 自动注入文件上传配置 + private UploadConfig conf; - /** - * 文件上传 - * 实现文件上传业务逻辑,包括文件验证、文件保存和返回上传结果。 - * - * @param reqDTO 上传请求DTO,包含上传文件所需的数据 - * @return 上传响应DTO,封装上传文件后的响应数据 - */ @Override public UploadRespDTO upload(UploadReqDTO reqDTO) { + + // 文件内容 - MultipartFile file = reqDTO.getFile(); // 获取上传的文件 + MultipartFile file = reqDTO.getFile(); // 验证文件后缀 - boolean allow = FilenameUtils.isExtension(file.getOriginalFilename(), conf.getAllowExtensions()); // 验证文件后缀 + boolean allow = FilenameUtils.isExtension(file.getOriginalFilename(), conf.getAllowExtensions()); if(!allow){ - throw new ServiceException("文件类型不允许上传!"); // 抛出异常 + throw new ServiceException("文件类型不允许上传!"); } // 上传文件夹 - String fileDir = conf.getDir(); // 获取文件存储目录 + String fileDir = conf.getDir(); // 真实物理地址 String fullPath; try { + // 新文件 - String filePath = FileUtils.processPath(file); // 处理文件路径 + String filePath = FileUtils.processPath(file); // 文件保存地址 - fullPath = fileDir + filePath; // 拼接完整路径 + fullPath = fileDir + filePath; // 创建文件夹 - FileUtils.checkDir(fullPath); // 检查并创建文件夹 + FileUtils.checkDir(fullPath); // 上传文件 - FileCopyUtils.copy(file.getInputStream(), new FileOutputStream(fullPath)); // 复制文件内容到指定路径 + FileCopyUtils.copy(file.getInputStream(), new FileOutputStream(fullPath)); - return this.generateResult(filePath); // 返回上传结果 + return this.generateResult(filePath); } catch (IOException e) { - e.printStackTrace(); // 打印异常堆栈 - throw new ServiceException("文件上传失败:"+e.getMessage()); // 抛出异常 + e.printStackTrace(); + throw new ServiceException("文件上传失败:"+e.getMessage()); } } - /** - * 独立文件下载 - * 实现文件下载业务逻辑,包括获取文件真实路径和返回文件内容。 - * - * @param request HTTP请求,包含下载请求的信息 - * @param response HTTP响应,用于返回文件内容 - */ + + @Override public void download(HttpServletRequest request, HttpServletResponse response) { + // 获取真实的文件路径 - String filePath = this.getRealPath(request.getRequestURI()); // 获取文件的真实路径 + String filePath = this.getRealPath(request.getRequestURI()); // 处理中文问题 try { - filePath = URLDecoder.decode(filePath, "utf-8"); // 解码文件路径 + filePath = URLDecoder.decode(filePath, "utf-8"); } catch (UnsupportedEncodingException e) { - throw new RuntimeException(e); // 抛出运行时异常 + throw new RuntimeException(e); } - System.out.println("++++完整路径为:"+filePath); // 打印完整路径 + System.out.println("++++完整路径为:"+filePath); try { - FileUtils.writeRange(request, response, filePath); // 调用文件工具类进行文件写入 + FileUtils.writeRange(request, response, filePath); } catch (IOException e) { - response.setStatus(404); // 设置响应状态为404 - log.error("预览文件失败" + e.getMessage()); // 打印错误日志 + response.setStatus(404); + log.error("预览文件失败" + e.getMessage()); } } + /** * 构造返回 - * 根据文件名构造上传响应DTO,包含上传后的完整URL地址。 - * - * @param fileName 文件名 - * @return 上传响应DTO + * @param fileName + * @return */ private UploadRespDTO generateResult(String fileName) { + //获取加速域名 - String domain = conf.getUrl(); // 获取文件访问的URL + String domain = conf.getUrl(); // 返回结果 - return new UploadRespDTO(domain + fileName); // 返回上传响应DTO + return new UploadRespDTO(domain + fileName); } + /** * 获取真实物理文件地址 - * 根据请求URI获取文件的真实物理路径。 - * - * @param uri 请求URI - * @return 真实文件路径 + * @param uri + * @return */ public String getRealPath(String uri){ - String regx = Constant.FILE_PREFIX+"(.*)"; // 正则表达式匹配文件路径 + + String regx = Constant.FILE_PREFIX+"(.*)"; // 查找全部变量 - Pattern pattern = Pattern.compile(regx); // 编译正则表达式 - Matcher m = pattern.matcher(uri); // 创建匹配器 + Pattern pattern = Pattern.compile(regx); + Matcher m = pattern.matcher(uri); if (m.find()) { - String str = m.group(1); // 获取匹配的文件路径 - return conf.getDir() + str; // 返回真实文件路径 + String str = m.group(1); + return conf.getDir() + str; } - return null; // 返回null表示未找到 + return null; } -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/upload/utils/FileUtils.java b/exam-api/src/main/java/com/yf/exam/ability/upload/utils/FileUtils.java index 0c45c41..539ecb0 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/upload/utils/FileUtils.java +++ b/exam-api/src/main/java/com/yf/exam/ability/upload/utils/FileUtils.java @@ -1,169 +1,172 @@ -// 定义包路径,用于存放文件工具类 package com.yf.exam.ability.upload.utils; -import com.baomidou.mybatisplus.core.toolkit.IdWorker; // 导入ID生成工具,用于生成唯一的文件名 -import com.yf.exam.core.utils.DateUtils; // 导入日期工具类,用于处理日期相关的操作 -import org.apache.commons.io.FilenameUtils; // 导入文件名工具类,用于处理文件名和扩展名 -import org.springframework.web.multipart.MultipartFile; // 导入Spring文件上传类,用于处理上传的文件 +import com.baomidou.mybatisplus.core.toolkit.IdWorker; +import com.yf.exam.core.utils.DateUtils; +import org.apache.commons.io.FilenameUtils; +import org.springframework.web.multipart.MultipartFile; -import javax.servlet.ServletOutputStream; // 导入Servlet输出流,用于写入HTTP响应 -import javax.servlet.http.HttpServletRequest; // 导入HTTP请求类,表示客户端的请求 -import javax.servlet.http.HttpServletResponse; // 导入HTTP响应类,表示服务器的响应 -import java.io.File; // 导入文件类,用于操作文件和目录 -import java.io.IOException; // 导入IO异常类,处理IO操作中的异常 -import java.io.RandomAccessFile; // 导入随机访问文件类,用于高效地读写文件 -import java.util.Date; // 导入日期类,用于处理日期和时间 +import javax.servlet.ServletOutputStream; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.File; +import java.io.IOException; +import java.io.RandomAccessFile; +import java.util.Date; /** * 文件工具类 - * 提供文件操作的辅助功能,包括文件上传、下载、重命名和目录管理等。 * @author bool */ public class FileUtils { - /** - * 后缀分割符号 - * 用于分割文件名和扩展名。 - */ - private static final String SUFFIX_SPLIT = "."; // 文件后缀分隔符 - - /** - * 支持以断点的方式输出文件,提供文件在线预览和视频在线播放 - * 方法用于处理HTTP请求,以断点续传的方式输出文件内容,支持文件在线预览和视频在线播放。 - * - * @param request HTTP请求,包含客户端的请求信息 - * @param response HTTP响应,包含服务器的响应信息 - * @param filePath 文件路径,指定要输出的文件 - * @throws IOException IO异常,处理文件操作中的异常 - */ - public static void writeRange(HttpServletRequest request, HttpServletResponse response, String filePath) throws IOException { - // 读取文件 - File file = new File(filePath); // 创建文件对象 - - // 只读模式 - RandomAccessFile randomFile = new RandomAccessFile(file, "r"); // 创建随机访问文件对象 - long contentLength = randomFile.length(); // 获取文件长度 - String range = request.getHeader("Range"); // 获取请求头中的Range - int start = 0, end = 0; // 初始化起始和结束位置 - if (range != null && range.startsWith("bytes=")) { - String[] values = range.split("=")[1].split("-"); // 解析Range - start = Integer.parseInt(values[0]); // 获取起始位置 - if (values.length > 1) { - end = Integer.parseInt(values[1]); // 获取结束位置 - } - } - int requestSize; // 请求大小 - if (end != 0 && end > start) { - requestSize = end - start + 1; // 计算请求大小 - } else { - requestSize = Integer.MAX_VALUE; // 设置为最大值 - } - - byte[] buffer = new byte[128]; // 创建缓冲区 - response.setContentType(MediaUtils.getContentType(filePath)); // 设置响应内容类型 - response.setHeader("Accept-Ranges", "bytes"); // 设置支持的范围 - response.setHeader("ETag", file.getName()); // 设置文件名 - response.setHeader("Last-Modified", new Date().toString()); // 设置最后修改时间 - // 第一次请求只返回content length来让客户端请求多次实际数据 - if (range == null) { - response.setHeader("Content-length", contentLength + ""); // 设置内容长度 - } else { - // 以后的多次以断点续传的方式来返回视频数据 - response.setStatus(HttpServletResponse.SC_PARTIAL_CONTENT); // 设置部分内容状态 - long requestStart = 0, requestEnd = 0; // 初始化请求起始和结束位置 - String[] ranges = range.split("="); // 解析Range - if (ranges.length > 1) { - String[] rangeData = ranges[1].split("-"); // 获取范围数据 - requestStart = Integer.parseInt(rangeData[0]); // 获取请求起始位置 - if (rangeData.length > 1) { - requestEnd = Integer.parseInt(rangeData[1]); // 获取请求结束位置 - } - } - long length; // 请求长度 - if (requestEnd > 0) { - length = requestEnd - requestStart + 1; // 计算请求长度 - response.setHeader("Content-length", "" + length); // 设置内容长度 - response.setHeader("Content-Range", "bytes " + requestStart + "-" + requestEnd + "/" + contentLength); // 设置内容范围 - } else { - length = contentLength - requestStart; // 计算请求长度 - response.setHeader("Content-length", "" + length); // 设置内容长度 - response.setHeader("Content-Range", "bytes " + requestStart + "-" + (contentLength - 1) + "/" + contentLength); // 设置内容范围 - } - } - ServletOutputStream out = response.getOutputStream(); // 获取输出流 - int needSize = requestSize; // 需要的大小 - randomFile.seek(start); // 移动到起始位置 - while (needSize > 0) { - int len = randomFile.read(buffer); // 读取文件内容 - if (needSize < buffer.length) { - out.write(buffer, 0, needSize); // 写入需要的大小 - } else { - out.write(buffer, 0, len); // 写入缓冲区内容 - if (len < buffer.length) { - break; // 如果读取的长度小于缓冲区长度,退出循环 - } - } - needSize -= buffer.length; // 减少需要的大小 - } - randomFile.close(); // 关闭随机访问文件 - out.close(); // 关闭输出流 - } - - /** - * 重命名文件 - * 方法用于生成新的文件名,避免文件名冲突。 - * - * @param fileName 文件名 - * @return 新文件名 - */ - public static String renameFile(String fileName) { - // 没有后缀名不处理 - if (!fileName.contains(SUFFIX_SPLIT)) { - return fileName; // 返回原文件名 - } - - // 文件后缀 - String extension = FilenameUtils.getExtension(fileName); // 获取文件后缀 - - // 以系统时间命名 - return IdWorker.getIdStr() + "." + extension; // 返回新文件名 - } - - /** - * 处理新的文件路径,为上传文件预设目录,如:2021/01/01/xxx.jpg,要注意的是,前面没有斜杠 - * 方法用于处理上传文件的路径,根据当前日期生成目录结构。 - * - * @param file 文件 - * @return 处理后的文件路径 - */ - public static String processPath(MultipartFile file) { - // 创建OSSClient实例。 - String fileName = file.getOriginalFilename(); // 获取原始文件名 - - // 需要重命名 - fileName = renameFile(fileName); // 重命名文件 - - // 获得上传的文件夹 - String dir = DateUtils.formatDate(new Date(), "yyyy/MM/dd/"); // 获取当前日期格式化后的目录 - - return new StringBuffer(dir).append(fileName).toString(); // 返回处理后的文件路径 - } - - /** - * 检查文件夹是否存在,不存在则创建 - * 方法用于检查指定的文件夹是否存在,如果不存在则创建。 - * - * @param fileName 文件名 - */ - public static void checkDir(String fileName) { - int index = fileName.lastIndexOf("/"); // 获取最后一个斜杠的位置 - if (index == -1) { - return; // 如果没有斜杠,返回 - } - - File file = new File(fileName.substring(0, index)); // 创建文件对象 - if (!file.exists()) { - file.mkdirs(); // 如果文件夹不存在,创建文件夹 - } - } -} \ No newline at end of file + /** + * 后缀分割符号 + */ + private static final String SUFFIX_SPLIT = "."; + + + /** + * 支持以断点的方式输出文件,提供文件在线预览和视频在线播放 + * @param request + * @param response + * @param filePath + * @throws IOException + */ + public static void writeRange(HttpServletRequest request, + HttpServletResponse response, String filePath) throws IOException { + + // 读取文件 + File file = new File(filePath); + + //只读模式 + RandomAccessFile randomFile = new RandomAccessFile(file, "r"); + long contentLength = randomFile.length(); + String range = request.getHeader("Range"); + int start = 0, end = 0; + if (range != null && range.startsWith("bytes=")) { + String[] values = range.split("=")[1].split("-"); + start = Integer.parseInt(values[0]); + if (values.length > 1) { + end = Integer.parseInt(values[1]); + } + } + int requestSize; + if (end != 0 && end > start) { + requestSize = end - start + 1; + } else { + requestSize = Integer.MAX_VALUE; + } + + byte[] buffer = new byte[128]; + response.setContentType(MediaUtils.getContentType(filePath)); + response.setHeader("Accept-Ranges", "bytes"); + response.setHeader("ETag", file.getName()); + response.setHeader("Last-Modified", new Date().toString()); + //第一次请求只返回content length来让客户端请求多次实际数据 + if (range == null) { + response.setHeader("Content-length", contentLength + ""); + } else { + //以后的多次以断点续传的方式来返回视频数据 + response.setStatus(HttpServletResponse.SC_PARTIAL_CONTENT); + long requestStart = 0, requestEnd = 0; + String[] ranges = range.split("="); + if (ranges.length > 1) { + String[] rangeData = ranges[1].split("-"); + requestStart = Integer.parseInt(rangeData[0]); + if (rangeData.length > 1) { + requestEnd = Integer.parseInt(rangeData[1]); + } + } + long length; + if (requestEnd > 0) { + length = requestEnd - requestStart + 1; + response.setHeader("Content-length", "" + length); + response.setHeader("Content-Range", "bytes " + requestStart + "-" + requestEnd + "/" + contentLength); + } else { + length = contentLength - requestStart; + response.setHeader("Content-length", "" + length); + response.setHeader("Content-Range", "bytes " + requestStart + "-" + (contentLength - 1) + "/" + contentLength); + } + } + ServletOutputStream out = response.getOutputStream(); + int needSize = requestSize; + randomFile.seek(start); + while (needSize > 0) { + int len = randomFile.read(buffer); + if (needSize < buffer.length) { + out.write(buffer, 0, needSize); + } else { + out.write(buffer, 0, len); + if (len < buffer.length) { + break; + } + } + needSize -= buffer.length; + } + randomFile.close(); + out.close(); + } + + + + + /** + * 重命名文件 + * @param fileName + * @return + */ + public static String renameFile(String fileName) { + + //没有后缀名不处理 + if (!fileName.contains(SUFFIX_SPLIT)) { + return fileName; + } + + //文件后缀 + String extension = FilenameUtils.getExtension(fileName); + + //以系统时间命名 + return IdWorker.getIdStr() + "."+ extension; + + } + + + /** + * 处理新的文件路径,为上传文件预设目录,如:2021/01/01/xxx.jpg,要注意的是,前面没有斜杠 + * @param file 文件 + * @return + */ + public static String processPath(MultipartFile file){ + + // 创建OSSClient实例。 + String fileName = file.getOriginalFilename(); + + // 需要重命名 + fileName = renameFile(fileName); + + //获得上传的文件夹 + String dir = DateUtils.formatDate(new Date(), "yyyy/MM/dd/"); + + return new StringBuffer(dir).append(fileName).toString(); + + } + + /** + * 检查文件夹是否存在,不存在则创建 + * @param fileName + * @return + */ + public static void checkDir(String fileName){ + int index = fileName.lastIndexOf("/"); + if(index == -1){ + return; + } + + File file = new File(fileName.substring(0,index)); + if(!file.exists()){ + file.mkdirs(); + } + } + + +} diff --git a/exam-api/src/main/java/com/yf/exam/ability/upload/utils/MediaUtils.java b/exam-api/src/main/java/com/yf/exam/ability/upload/utils/MediaUtils.java index aff5557..b4394c0 100644 --- a/exam-api/src/main/java/com/yf/exam/ability/upload/utils/MediaUtils.java +++ b/exam-api/src/main/java/com/yf/exam/ability/upload/utils/MediaUtils.java @@ -1,75 +1,47 @@ package com.yf.exam.ability.upload.utils; -// 这一行声明了该Java类所属的包名为com.yf.exam.ability.upload.utils。 -// 包用于对相关的Java类进行组织和管理,方便代码的分类、复用以及避免类名冲突。 -import org.apache.commons.lang3.StringUtils; // 导入Apache Commons Lang的字符串工具类,用于字符串操作 -// 引入了Apache Commons Lang库中的StringUtils类。 -// 这个类提供了许多方便的字符串操作方法,比如判断字符串是否为空、是否空白(包含空格等空白字符)、字符串的拼接、截取等操作,在这里主要用于对文件路径字符串进行相关判断。 +import org.apache.commons.lang3.StringUtils; -import java.util.HashMap; // 导入Java的HashMap类,用于创建映射 -// 导入了Java标准库中的HashMap类。 -// HashMap是实现了Map接口的一个具体类,它用于存储键值对形式的数据,通过键可以快速获取对应的值,在这里用于创建文件后缀名到MIME类型的映射关系。 - -import java.util.Map; // 导入Java的Map接口,用于键值对映射 -// 引入了Java标准库中的Map接口。 -// Map接口定义了键值对数据结构的通用操作规范,如添加键值对、根据键获取值、删除键值对等操作。 -// 虽然这里同时导入了HashMap类,但导入Map接口使得代码在使用映射数据结构时更具通用性,方便后续可能的替换为其他实现Map接口的类。 +import java.util.HashMap; +import java.util.Map; /** - * 媒体工具类,用于判断和获取媒体文件的MIME类型 - * 该类提供了一个静态映射,用于将文件后缀名映射到对应的MIME类型,以便在处理文件上传和下载时确定正确的媒体类型。 - * @author bool + * 媒体工具,判断媒体类型 + * @author bool * @date 2019-11-14 16:21 */ -// 这是一个Java类的文档注释,用于描述该类的整体功能和用途。 -// 说明这个类主要是作为媒体工具类,其核心功能是判断和获取媒体文件的MIME类型。 -// 通过维护一个静态的映射关系(文件后缀名到MIME类型的映射),在文件上传和下载的业务场景中,能够依据文件的后缀名准确地确定其对应的MIME类型,从而正确处理文件的传输和展示等操作。 -// 同时标注了类的作者是bool,创建日期是2019年11月14日16:21。 - public class MediaUtils { - /** - * 媒体类型映射 - * 静态映射,包含文件后缀名到MIME类型的映射。 - */ - // 这是对下面定义的MEDIA_MAP成员变量的文档注释,说明它是一个静态的映射,用于存储文件后缀名和对应的MIME类型之间的映射关系。 + public static final Map MEDIA_MAP = new HashMap(){ + { - public static final Map MEDIA_MAP = new HashMap() {{ - // 初始化映射 - // PDF文件的MIME类型 - put(".pdf", "application/pdf"); - // 视频文件的MIME类型 - put(".mp4", "video/mp4"); - }}; - // 这里定义了一个名为MEDIA_MAP的公共静态最终变量,它是一个HashMap类型的映射。 - // 通过匿名内部类的初始化方式,在创建HashMap实例的同时向其中添加了一些常见的文件后缀名到MIME类型的映射关系,比如将".pdf"后缀名映射到"application/pdf"这个MIME类型,将".mp4"后缀名映射到"video/mp4"这个MIME类型。 - // 由于被声明为静态最终变量,它在类加载时就会被初始化,并且其值不能再被修改,方便在整个类的其他地方直接使用这个映射关系来获取文件的MIME类型。 + //本来是pdf的 + put(".pdf", "application/pdf"); + + //视频 + put(".mp4", "video,video/mp4"); + + } + }; /** - * 根据文件路径获取文件的MIME类型 - * 方法根据文件的后缀名,从MEDIA_MAP中获取对应的MIME类型。 - * - * @param filePath 文件路径 - * @return 文件的MIME类型 + * 获得文件类型 + * @param filePath + * @return */ - // 这是对下面定义的getContentType方法的文档注释,说明该方法的功能是根据传入的文件路径,提取出文件的后缀名,然后从MEDIA_MAP这个静态映射中获取对应的MIME类型并返回。 + public static String getContentType(String filePath){ + + if(!StringUtils.isBlank(filePath) + && filePath.indexOf(".")!=-1) { - public static String getContentType(String filePath) { - if (!StringUtils.isBlank(filePath) && filePath.indexOf(".")!= -1) { - // 提取文件后缀名,并转换为小写 + // 后缀转换成小写 String suffix = filePath.substring(filePath.lastIndexOf(".")).toLowerCase(); - // 从映射中获取MIME类型 if (MEDIA_MAP.containsKey(suffix)) { return MEDIA_MAP.get(suffix); } } - // 如果没有找到对应的MIME类型,返回默认值 return "application/octet-stream"; } - // 这是定义的一个公共静态方法getContentType,它接受一个字符串类型的参数filePath,表示文件的路径。 - // 首先,通过StringUtils.isBlank方法判断文件路径是否不为空且包含小数点(即有文件后缀名)。 - // 如果满足条件,就使用substring方法从文件路径中提取出文件的后缀名,并通过toLowerCase方法将其转换为小写形式。 - // 然后,检查提取出的后缀名是否存在于MEDIA_MAP这个静态映射中,如果存在,就返回对应的MIME类型;如果不存在,就返回默认的MIME类型"application/octet-stream",这个默认值通常用于表示未知类型的二进制数据文件。 -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/aspect/DictAspect.java b/exam-api/src/main/java/com/yf/exam/aspect/DictAspect.java index a85ec9a..441a154 100644 --- a/exam-api/src/main/java/com/yf/exam/aspect/DictAspect.java +++ b/exam-api/src/main/java/com/yf/exam/aspect/DictAspect.java @@ -1,189 +1,156 @@ package com.yf.exam.aspect; -// 导入FastJSON库,用于将Java对象转换为JSON字符串以及从JSON字符串解析为Java对象等操作, -// 在本类的多个方法中用于对象与JSON字符串之间的转换,以便于处理数据字典相关的值。 import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; - -// 导入MyBatis Plus的接口,用于处理分页相关的数据结构,在本类中用于判断和处理分页数据中的数据字典值。 import com.baomidou.mybatisplus.core.metadata.IPage; - -// 导入Jackson库的注解,用于指定日期格式的序列化和反序列化方式, -// 在本类的parseObject方法中用于根据注解设置日期字段的格式化输出。 import com.fasterxml.jackson.annotation.JsonFormat; - -// 导入自定义的注解,可能用于标记与数据字典相关的字段,以便在本类中识别并处理这些字段的数据字典值。 import com.yf.exam.core.annon.Dict; - -// 导入自定义的API响应类,用于封装API调用的返回结果,包括数据、状态码等信息, -// 在本类的多个方法中用于获取和设置返回结果中的数据部分,以便处理其中的数据字典值。 import com.yf.exam.core.api.ApiRest; - -// 导入自定义的反射工具类,可能用于获取对象的所有字段等反射相关操作, -// 在本类的parseObject方法中用于获取对象的所有字段以便遍历处理数据字典值。 import com.yf.exam.core.utils.Reflections; - -// 导入系统数据字典服务类,用于查询数据字典表以获取数据字典值的翻译文本, -// 在本类的translateDictValue方法中用于根据字典代码、文本、表名和键值查询对应的字典文本。 import com.yf.exam.modules.sys.system.service.SysDictService; - -// 导入Lombok的Log4j2注解,用于简化日志记录的配置,通过该注解可以方便地在类中使用Log4j2进行日志输出。 -import lombok.extern.log4j.Log4j2; - -// 导入AspectJ的相关类,用于定义切面、切点和环绕通知等AOP相关的操作, -// 在本类中用于实现对特定方法的拦截和处理,以实现数据字典值的翻译等功能。 +import lombok.extern.slf4j.Slf4j; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; - -// 导入Spring框架的注解,用于自动注入依赖对象和标记类为Spring组件, -// 在本类中通过@Autowired注入SysDictService对象,并通过@Component标记本类为Spring组件,使其可被Spring容器管理。 import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; - -// 导入Spring框架的工具类,用于判断字符串是否为空等操作, -// 在本类的多个方法中用于判断字符串是否为空,以便进行相应的处理逻辑。 import org.springframework.util.StringUtils; -// 导入Java标准库中的反射相关类,用于通过反射操作对象的字段、获取类型信息等, -// 在本类的多个方法中广泛用于获取对象的字段、判断字段类型、获取字段注解等操作。 import java.lang.reflect.Field; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; - -// 导入Java标准库中的日期格式化类和日期类,用于处理日期格式的转换和操作, -// 在本类的parseObject方法中用于根据注解或默认格式对日期字段进行格式化输出。 import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; /** - * 数据字典AOP类,主要功能是处理数据字典值。通过拦截特定的方法调用, - * 对返回结果中的数据字典相关字段进行翻译、格式化等处理,以提供更友好的展示效果。 + * 数据字典AOP类,处理数据字典值 * * @author bool */ -@Aspect // 标记该类为一个AspectJ切面类,用于定义切面相关的逻辑。 -@Component // 标记该类为Spring组件,使其能够被Spring容器管理和实例化,以便在应用中使用。 -@Log4j2 // 使用Log4j2注解启用日志记录功能,方便在类中记录相关操作的日志信息。 +@Aspect +@Component +@Slf4j public class DictAspect { @Autowired - private SysDictService sysDictService; // 通过自动注入获取系统数据字典服务对象,用于查询数据字典值。 + private SysDictService sysDictService; /** - * 定义一个环绕通知,切入到指定的Controller方法执行前后。 - * 这里的切点表达式指定了拦截所有在com.yf.exam包及其子包下的所有Controller类中的所有公有方法。 - * - * @param pjp 切入点对象,包含了被拦截方法的相关信息,如方法参数、目标对象等。 - * @return 返回结果,经过处理后的方法执行结果,可能经过了数据字典值的处理等操作。 - * @throws Throwable 如果在环绕通知的执行过程中出现异常,则抛出。 + * 切入Controller执行 + * @param pjp + * @return + * @throws Throwable */ @Around("execution(public * com.yf.exam..*.*Controller.*(..))") public Object doAround(ProceedingJoinPoint pjp) throws Throwable { - return this.translate(pjp); // 调用translate方法对被拦截方法的执行结果进行处理,主要是处理数据字典值。 + return this.translate(pjp); } /** - * 对被拦截方法的执行结果进行翻译处理,并返回处理后的结果。 - * 在调用此方法之前,通常需要确保相关的BaseDictService(可能是数据字典相关的基础服务)已经实现。 + * 进行翻译并返回,调用前必须实现:BaseDictService * - * @param pjp 切入点对象,包含了被拦截方法的相关信息,如方法参数、目标对象等。 - * @return 返回结果,经过数据字典值处理后的方法执行结果。 - * @throws Throwable 如果在处理过程中出现异常,则抛出。 + * @param pjp + * @return + * @throws Throwable */ public Object translate(ProceedingJoinPoint pjp) throws Throwable { - // 调用被拦截方法获取原始结果,然后调用parseAllDictText方法对结果进行数据字典值的处理。 + // 处理字典 return this.parseAllDictText(pjp.proceed()); } /** - * 根据结果对象的类型,判断是否需要对其进行数据字典值的处理。 - * 如果结果对象是ApiRest类型,则调用parseFullDictText方法进行完整的数据字典值处理。 + * 转换全部数据字典 * - * @param result 结果对象,即被拦截方法执行后的返回结果。 + * @param result */ private Object parseAllDictText(Object result) { - // 判断结果对象是否是ApiRest类型,如果是则进行数据字典值的处理。 + + // 非ApiRest类型不处理 if (result instanceof ApiRest) { parseFullDictText(result); } + return result; } + /** - * 对ApiRest类型的结果对象进行完整的数据字典值处理,包括处理分页数据、列表数据以及单对象数据等情况。 + * 转换所有类型的数据字典、包含子列表 * - * @param result 结果对象,即ApiRest类型的返回结果,其中包含了要处理的数据部分。 + * @param result */ private void parseFullDictText(Object result) { + try { - Object rest = ((ApiRest) result).getData(); // 获取ApiRest对象中的数据部分,这部分数据可能包含数据字典相关字段。 - // 如果数据部分为空或者是基本数据类型,则不需要进行数据字典值的处理,直接返回。 + Object rest = ((ApiRest) result).getData(); + + // 不处理普通数据类型 if (rest == null || this.isBaseType(rest.getClass())) { return; } - // 如果数据部分是分页数据类型(IPage),则对分页数据中的每条记录进行数据字典值处理。 + // 分页的 if (rest instanceof IPage) { List items = new ArrayList<>(16); for (Object record : ((IPage) rest).getRecords()) { - Object item = this.parseObject(record); // 调用parseObject方法对每条记录进行数据字典值处理。 + Object item = this.parseObject(record); items.add(item); } - ((IPage) rest).setRecords(items); // 将处理后的记录列表重新设置回分页对象中。 + ((IPage) rest).setRecords(items); return; } - // 如果数据部分是列表数据类型(List),则对列表中的每条记录进行数据字典值处理。 + // 数据列表的 if (rest instanceof List) { List items = new ArrayList<>(); for (Object record : ((List) rest)) { - Object item = this.parseObject(record); // 调用parseObject方法对每条记录进行数据字典值处理。 + Object item = this.parseObject(record); items.add(item); } - // 将处理后的记录列表重新设置回ApiRest对象的数据部分。 + // 重新回写值 ((ApiRest) result).setData(items); return; } - // 如果数据部分是单对象数据,则对该单对象进行数据字典值处理。 + // 处理单对象 Object item = this.parseObject(((ApiRest) result).getData()); ((ApiRest) result).setData(item); } catch (Exception e) { - e.printStackTrace(); // 如果在处理过程中出现异常,则打印异常堆栈信息。 + e.printStackTrace(); } } /** - * 对单个记录对象进行数据字典值处理,包括处理列表字段、带有数据字典注解的普通字段以及日期字段等情况。 + * 处理数据字典值 * - * @param record 记录对象,即要进行数据字典值处理的对象。 - * @return 处理后的对象,经过数据字典值处理后的记录对象。 + * @param record + * @return */ public Object parseObject(Object record) { + if (record == null) { return null; } - // 如果记录对象是基本数据类型,则不需要进行数据字典值处理,直接返回原对象。 + // 不处理普通数据类型 if (this.isBaseType(record.getClass())) { return record; } - // 将记录对象转换为JSON字符串,再解析为JSONObject对象,以便于通过字段名获取和设置值。 + // 转换JSON字符 String json = JSON.toJSONString(record); JSONObject item = JSONObject.parseObject(json); - for (Field field : Reflections.getAllFields(record)) { // 遍历记录对象的所有字段。 + for (Field field : Reflections.getAllFields(record)) { - // 如果字段类型是List类型,则对列表字段进行特殊处理。 + // 如果是List类型 if (List.class.isAssignableFrom(field.getType())) { try { - List list = this.processList(field, item.getObject(field.getName(), List.class)); // 调用processList方法处理列表字段。 + List list = this.processList(field, item.getObject(field.getName(), List.class)); item.put(field.getName(), list); continue; } catch (Exception e) { @@ -192,14 +159,14 @@ public class DictAspect { continue; } - // 如果字段带有数据字典注解(Dict),则对该字段进行数据字典值的翻译处理。 - if (field.getAnnotation(Dict.class)!= null) { + // 处理普通字段 + if (field.getAnnotation(Dict.class) != null) { String code = field.getAnnotation(Dict.class).dicCode(); String text = field.getAnnotation(Dict.class).dicText(); String table = field.getAnnotation(Dict.class).dictTable(); String key = String.valueOf(item.get(field.getName())); - // 调用translateDictValue方法翻译字典值对应的文本,根据字典代码、文本、表名和键值查询对应的字典文本。 + //翻译字典值对应的txt String textValue = this.translateDictValue(code, text, table, key); if (StringUtils.isEmpty(textValue)) { textValue = ""; @@ -208,22 +175,24 @@ public class DictAspect { continue; } - // 如果字段类型是日期类型(java.util.Date)且字段值不为空,则对日期字段进行格式转换处理。 - if ("java.util.Date".equals(field.getType().getName()) && item.get(field.getName())!= null) { - // 获取字段上的JsonFormat注解。 + //日期格式转换 + if ("java.util.Date".equals(field.getType().getName()) && item.get(field.getName()) != null) { + + // 获取注解 JsonFormat ann = field.getAnnotation(JsonFormat.class); - // 定义日期格式化对象。 + // 格式化方式 SimpleDateFormat fmt; - // 如果注解不为空且指定了日期格式模式,则使用注解指定的格式创建日期格式化对象。 - if (ann!= null &&!StringUtils.isEmpty(ann.pattern())) { + // 使用注解指定的 + if (ann != null && !StringUtils.isEmpty(ann.pattern())) { fmt = new SimpleDateFormat(ann.pattern()); } else { - // 如果注解为空或未指定格式,则使用默认的日期格式创建日期格式化对象。 + // 默认时间样式 fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); } item.put(field.getName(), fmt.format(new Date((Long) item.get(field.getName())))); continue; + } } @@ -231,53 +200,49 @@ public class DictAspect { } /** - * 处理类型为List的字段,对列表中的每个元素进行数据字典值处理等操作。 + * 获得类型为List的值 * - * @param field 字段对象,即要处理的List类型字段。 - , - * @param list 列表对象,即字段对应的列表值。 - * @return 处理后的列表,经过数据字典值处理后的列表对象。 + * @param field + * @return */ private List processList(Field field, List list) { - // 如果列表为空,则返回一个空的ArrayList对象。 + + // 空判断 if (list == null || list.size() == 0) { return new ArrayList<>(); } - // 获取List属性的真实类型,通过反射获取字段的泛型类型,再尝试获取其实际的类型参数。 + // 获得List属性的真实类 Type genericType = field.getGenericType(); Class actualType = null; if (genericType instanceof ParameterizedType) { + // 尝试获取数据类型 ParameterizedType pt = (ParameterizedType) genericType; try { actualType = (Class) pt.getActualTypeArguments()[0]; - } catch (Exception e) { + }catch (Exception e){ return list; } } - // 如果列表元素的类型是基本数据类型,则不需要进行数据字典值处理,直接返回原列表。 + // 常规列表无需处理 if (isBaseType(actualType)) { return list; } - // 创建一个新的ArrayList对象,用于存储处理后的列表元素。 + // 返回列表 List result = new ArrayList<>(16); for (int i = 0; i < list.size(); i++) { - // 获取列表中的每个元素。 + // 创建实例-->赋值-->字典处理 Object data = list.get(i); try { - // 将列表元素转换为JSON字符串,再解析为其真实类型的对象,以便进行数据字典值处理。 data = JSON.parseObject(JSON.toJSONString(data), actualType); - } catch (Exception e) { - // 如果转换过程中出现错误,则不进行处理,直接使用原元素。 - // 这里可以根据实际需求进一步处理错误情况,比如记录日志等。 - // 目前只是简单地忽略错误,继续处理下一个元素。 - ; + }catch (Exception e){ + // 转换出错不处理 } - // 对处理后的元素进行数据字典值处理,调用parseObject方法。 + // 处理后的数据 Object pds = this.parseObject(data); result.add(pds); } @@ -286,25 +251,23 @@ public class DictAspect { } /** - , - * 根据字典代码、文本、表名和键值翻译数据字典值对应的文本。 + * 翻译实现 * - * @param code 字典代码,用于在数据字典表中定位特定的字典项。 - * @param text 字典文本,可能是与字典代码相关的描述信息等。 - * @param table 字典表名,指定要查询的数据字典表。 - * @param key 字典键值,用于在字典表中查找对应的字典项。 - * @return 翻译后的值,即根据字典代码、文本、表名和键值查询到的字典文本值,如果未找到则返回空字符串。 + * @param code + * @param text + * @param table + * @param key + * @return */ - private String translateDictValue(String code, String text, String table, String键值) { + private String translateDictValue(String code, String text, String table, String key) { if (StringUtils.isEmpty(key)) { return null; } try { - // 定义变量用于存储翻译后的字典文本值。 + // 翻译值 String dictText = null; if (!StringUtils.isEmpty(table)) { - // 如果字典表名不为空,则调用sysDictService的findDict方法查询数据字典表,获取对应的字典文本值。 - dictText = sysDictService.findDict(table, text, code, key.trim()); + dictText = sysDictService.findDict(table, text, code, key.trim()); } if (!StringUtils.isEmpty(dictText)) { @@ -317,13 +280,15 @@ public class DictAspect { } /** - * 判断给定的类是否是基本数据类型,包括常见的整数、字节、长整数、双精度浮点数、单精度浮点数、字符、短整数、布尔值以及字符串和数字类型等。 + * 判断是否基本类型 * - * @param clazz 要判断的类对象。 - * @return 是否基本类型,如果是基本数据类型则返回true,否则返回false。 + * @param clazz + * @return */ private boolean isBaseType(Class clazz) { - // 判断是否是常见的基本数据类型,如整数、字节、长整数等。 + + + // 基础数据类型 if (clazz.equals(java.lang.Integer.class) || clazz.equals(java.lang.Byte.class) || clazz.equals(java.lang.Long.class) || @@ -335,16 +300,18 @@ public class DictAspect { return true; } - // 判断是否是字符串类型。 + // String类型 if (clazz.equals(java.lang.String.class)) { return true; } - // 判断是否是数字类型(这里的数字类型可能是指抽象的数字类型,比如Number的子类等)。 + // 数字 if (clazz.equals(java.lang.Number.class)) { return true; } return false; } -} \ No newline at end of file + + +} diff --git a/exam-api/src/main/java/com/yf/exam/aspect/mybatis/QueryInterceptor.java b/exam-api/src/main/java/com/yf/exam/aspect/mybatis/QueryInterceptor.java index 2ca40a4..6b958ca 100644 --- a/exam-api/src/main/java/com/yf/exam/aspect/mybatis/QueryInterceptor.java +++ b/exam-api/src/main/java/com/yf/exam/aspect/mybatis/QueryInterceptor.java @@ -1,255 +1,144 @@ package com.yf.exam.aspect.mybatis; -// 导入MyBatis Plus的分页拦截器类,用于实现分页功能, -// 本类继承自该类以在拦截查询操作时能正确处理分页相关逻辑。 import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; - -// 导入系统用户登录信息的数据传输对象(DTO)类,用于获取当前登录用户的相关信息, -// 比如在处理查询拦截时可能需要根据登录用户的信息来过滤或修改查询语句。 import com.yf.exam.modules.sys.user.dto.response.SysUserLoginDTO; - -// 导入Lombok的Log4j2注解,用于简化日志记录的配置,通过该注解可以方便地在类中使用Log4j2进行日志输出。 import lombok.extern.log4j.Log4j2; - -// 导入JSqlParser库中的解析器管理器类,用于解析SQL语句, -// 在本类中用于解析查询语句以便进行后续的处理,如替换用户ID等操作。 import net.sf.jsqlparser.parser.CCJSqlParserManager; - -// 导入JSqlParser库中表示简单查询语句的类,它是查询语句的一种具体表示形式, -// 在解析查询语句后可以获取到该对象来进一步处理查询语句的内容。 import net.sf.jsqlparser.statement.select.PlainSelect; - -// 导入JSqlParser库中表示查询语句的通用类,用于接收解析后的查询语句对象, -// 以便进行后续的类型转换和处理操作。 import net.sf.jsqlparser.statement.select.Select; - -// 导入Apache Commons Lang3库中的StringUtils类,用于处理字符串相关的操作, -// 如判断字符串是否为空、非空等情况,在本类中用于判断用户ID等字符串是否有效。 import org.apache.commons.lang3.StringUtils; - -// 导入MyBatis中的语句处理器接口类,它是MyBatis在执行SQL语句时涉及的一个重要组件, -// 在本类中作为拦截的目标对象类型,以便在其执行查询准备阶段进行拦截操作。 import org.apache.ibatis.executor.statement.StatementHandler; - -// 导入MyBatis中的映射语句类,它包含了关于SQL语句的映射信息, -// 如SQL语句的ID、参数映射、结果映射等,在本类中用于获取SQL语句的相关属性,如语句类型等。 import org.apache.ibatis.mapping.MappedStatement; - -// 导入MyBatis中的SQL命令类型枚举类,用于表示不同类型的SQL命令, -// 如SELECT、INSERT、UPDATE、DELETE等,在本类中用于判断当前拦截的SQL语句是否为查询语句。 import org.apache.ibatis.mapping.SqlCommandType; - -// 导入MyBatis的拦截器接口类,定义了拦截器的基本行为和方法, -// 本类实现了该接口以作为一个MyBatis的拦截器来拦截查询语句的执行过程。 import org.apache.ibatis.plugin.Interceptor; - -// 导入MyBatis的拦截器注解类,用于标注一个类是MyBatis的拦截器并指定拦截的目标和方法, -// 本类通过该注解指定了要拦截StatementHandler的prepare方法。 import org.apache.ibatis.plugin.Intercepts; - -// 导入MyBatis的拦截器调用类,用于在拦截器方法中传递被拦截方法的调用信息, -// 包括被拦截的目标对象、方法参数等,在本类的intercept方法中会接收到该对象来处理拦截逻辑。 import org.apache.ibatis.plugin.Invocation; - -// 导入MyBatis的插件包装类,用于将拦截器包装成MyBatis可识别的插件形式, -// 在本类的plugin方法中会使用该类来包装目标对象以便实现拦截功能。 import org.apache.ibatis.plugin.Plugin; - -// 导入MyBatis的拦截器签名类,用于定义拦截器拦截的具体目标、方法和参数类型, -// 在本类的@Intercepts注解中会使用该类来指定具体的拦截信息。 import org.apache.ibatis.plugin.Signature; - -// 导入MyBatis的默认反射工厂类,用于创建反射对象来访问和修改MyBatis相关对象的属性, -// 在本类中用于创建MetaObject对象来操作StatementHandler等对象的属性。 import org.apache.ibatis.reflection.DefaultReflectorFactory; - -// 导入MyBatis的元对象类,它提供了一种通过反射来访问和操作MyBatis相关对象属性的机制, -// 在本类中用于获取和设置StatementHandler等对象的内部属性,如SQL语句等。 import org.apache.ibatis.reflection.MetaObject; - -// 导入MyBatis的系统元对象类,它是MetaObject的一种特殊实现,提供了一些默认的对象工厂和包装器工厂, -// 在本类中用于创建MetaObject对象来操作StatementHandler等对象的属性。 import org.apache.ibatis.reflection.SystemMetaObject; - -// 导入Apache Shiro的安全工具类,用于获取当前安全上下文的相关信息, -// 在本类中用于获取当前登录用户的信息,以便根据用户信息来处理查询语句。 import org.apache.shiro.SecurityUtils; -// 导入Java标准库中的字符串读取器类,用于将字符串转换为可读取的流形式, -// 在本类中用于将SQL语句字符串提供给CCJSqlParserManager进行解析。 import java.io.StringReader; - -// 导入Java标准库中的数据库连接接口类,它是Java数据库操作中与数据库建立连接的关键接口, -// 在本类中作为StatementHandler的prepare方法的参数类型之一出现,虽然在本类代码中未直接对其进行复杂操作, -// 但它是MyBatis执行SQL语句过程中涉及到的重要组件之一。 import java.sql.Connection; - -// 导入Java标准库中的属性类,用于存储和管理键值对形式的属性信息, -// 在本类中作为Interceptor接口的setProperties方法的参数类型,虽然在本类代码中该方法暂未实现具体功能, -// 但它是符合Interceptor接口规范的一部分,可用于接收外部配置的属性信息来动态调整拦截器的行为。 import java.util.Properties; /** - * 查询拦截器类,用于拦截处理通用的信息,如用户ID、多租户信息等。 - * 特别注意:此处继承了PaginationInterceptor分页,分页必须在拦截数据后执行,否则容易出现分页不准确, - * 分页计数大于实际数量等问题。 + * 查询拦截器,用于拦截处理通用的信息、如用户ID、多租户信息等; + * 特别注意:此处继承了PaginationInterceptor分页,分页必须在拦截数据后执行,否则容易出现分页不准确,分页计数大于实际数量等问题 * @author bool */ @Log4j2 -// 使用@Intercepts注解指定该类作为MyBatis的拦截器要拦截的目标和方法。 -// 这里拦截的是StatementHandler类的prepare方法,并且该方法的参数类型为Connection和Integer。 -@Intercepts({@Signature(type = StatementHandler.class, method = "prepare", args = {Connection.class, Integer.class})}) +@Intercepts({@Signature(type = StatementHandler.class, method = "prepare", args = {Connection.class, Integer.class}),}) public class QueryInterceptor extends PaginationInterceptor implements Interceptor { /** - * 客户ID的占位符字符串,在原始SQL语句中如果出现该占位符,将会被替换为实际的用户ID。 + * 客户ID */ private static final String USER_FILTER = "{{userId}}"; - /** - * 拦截器的核心方法,用于在目标方法(StatementHandler的prepare方法)被调用时进行拦截处理。 - * - * @param invocation 包含了被拦截方法的调用信息,如目标对象、方法参数等。 - * @return 返回处理后的结果,可能是继续执行被拦截方法后的结果,也可能是经过拦截器修改后的结果。 - * @throws Throwable 如果在拦截处理过程中出现异常,则抛出。 - */ + + @Override public Object intercept(Invocation invocation) throws Throwable { - // 从invocation对象中获取被拦截的目标对象,即StatementHandler对象。 StatementHandler statementHandler = (StatementHandler) invocation.getTarget(); - - // 使用MetaObject.forObject方法创建一个元对象,用于通过反射访问和修改StatementHandler对象的属性。 - // 这里传入了默认的对象工厂、包装器工厂和反射工厂,以便能够正确地操作StatementHandler对象的内部属性。 MetaObject metaObject = MetaObject.forObject(statementHandler, SystemMetaObject.DEFAULT_OBJECT_FACTORY, SystemMetaObject.DEFAULT_OBJECT_WRAPPER_FACTORY, new DefaultReflectorFactory()); - - // 从元对象中获取MappedStatement对象,该对象包含了关于SQL语句的映射信息,如SQL语句的ID、参数映射、结果映射等。 MappedStatement mappedStatement = (MappedStatement) metaObject.getValue("delegate.mappedStatement"); - // 获取当前SQL语句的类型,通过MappedStatement对象的getSqlCommandType方法获取。 - // 该类型是一个枚举值,如SELECT、INSERT、UPDATE、DELETE等,用于判断当前拦截的SQL语句是何种类型的操作。 + //sql语句类型 SqlCommandType sqlCommandType = mappedStatement.getSqlCommandType(); - // 只对查询类型的SQL语句进行处理,如果当前SQL语句类型是SELECT,则进入下面的处理逻辑。 + // 只过滤查询的 if (SqlCommandType.SELECT == sqlCommandType) { - - // 获取原始的SQL语句,通过StatementHandler的getBoundSql方法获取绑定的SQL语句对象,再获取其SQL字符串。 + // 获得原始SQL String sql = statementHandler.getBoundSql().getSql(); - // 如果原始SQL语句中不包含用户ID占位符(USER_FILTER),则直接调用父类(PaginationInterceptor)的intercept方法, - // 即按照原有的分页逻辑进行处理,不进行用户ID相关的替换等操作。 - if (!sql.contains(USER_FILTER)) { + // 不处理 + if(!sql.contains(USER_FILTER)){ return super.intercept(invocation); } - - // 如果原始SQL语句中包含用户ID占位符,则需要对SQL语句进行处理。 - // 首先调用parseSql方法对SQL语句进行解析和处理,包括替换用户ID等操作。 + // 处理SQL语句 String outSql = this.parseSql(sql); - - // 将处理后的SQL语句设置回StatementHandler对象的内部属性中,通过元对象的setValue方法设置boundSql.sql属性的值。 + // 设置SQL metaObject.setValue("delegate.boundSql.sql", outSql); - - // 再次调用父类(PaginationInterceptor)的intercept方法,此时是在处理完用户ID等信息后, - // 按照正确的分页逻辑进行处理,以确保分页功能在拦截数据并处理相关信息后正确执行。 + // 再分页 return super.intercept(invocation); } - // 如果当前SQL语句不是查询类型(SELECT),则直接执行被拦截方法的原有逻辑,不进行额外的处理。 return invocation.proceed(); } - /** - * 将拦截器包装成MyBatis可识别的插件形式的方法。 - * - * @param target 要包装的目标对象,通常是被拦截的对象,如StatementHandler等。 - * @return 返回包装后的对象,以便MyBatis能够正确识别并应用拦截器的功能。 - */ @Override public Object plugin(Object target) { return Plugin.wrap(target, this); } - /** - * 设置拦截器属性的方法,目前该方法在本类中暂未实现具体功能, - * 但它是符合Interceptor接口规范的一部分,可用于接收外部配置的属性信息来动态调整拦截器的行为。 - * - * @param properties 包含了外部配置的属性信息的Properties对象。 - */ @Override public void setProperties(Properties properties) { } + + /** - * 获取当前登录用户的方法,通过Apache Shiro的SecurityUtils工具类来获取当前安全上下文的主体对象, - * 并获取其主体信息(即登录用户的信息),如果获取成功则转换为SysUserLoginDTO类型返回,否则返回null。 - * - * @return 返回当前登录用户的SysUserLoginDTO对象,如果获取失败则返回null。 + * 获取当前登录用户 + * @return */ private SysUserLoginDTO getLoginUser() { try { - return SecurityUtils.getSubject().getPrincipal()!= null? (SysUserLoginDTO) SecurityUtils.getSubject().getPrincipal() : null; + return SecurityUtils.getSubject().getPrincipal() != null ? (SysUserLoginDTO) SecurityUtils.getSubject().getPrincipal() : null; } catch (Exception e) { return null; } } /** - * 替换用户ID的方法,根据当前登录用户的ID,将原始SQL语句中的用户ID占位符(USER_FILTER)替换为实际的用户ID。 - * - * @param sql 原始的SQL语句。 - * @return 返回替换用户ID后的SQL语句,如果用户ID为空,则返回null。 + * 替换用户ID + * @param sql + * @return */ private String processUserId(String sql) { - // 获取当前登录用户的信息,通过调用getLoginUser方法获取。 + // 当前用户 SysUserLoginDTO user = this.getLoginUser(); String userId = user.getId(); - - // 如果获取到的用户ID不为空,则将原始SQL语句中的用户ID占位符替换为实际的用户ID,并返回替换后的SQL语句。 - if (StringUtils.isNotBlank(userId)) { + if(StringUtils.isNotBlank(userId)){ return sql.replace(USER_FILTER, userId); } - - // 如果用户ID为空,则返回null。 return null; } /** - * 处理注入用户信息的方法,主要用于解析原始SQL语句,替换用户ID等操作,以实现根据用户信息来调整查询语句的目的。 - * - * @param src 原始的SQL语句。 - * @return 返回处理后的SQL语句,如果在处理过程中出现异常,则返回原始的SQL语句。 + * 处理注入用户信息 + * @param src + * @return */ private String parseSql(String src) { - // 创建一个CCJSqlParserManager对象,用于解析SQL语句。 CCJSqlParserManager parserManager = new CCJSqlParserManager(); try { - // 使用CCJSqlParserManager对象的parse方法解析原始SQL语句,将其转换为Select类型的对象。 - // 这里需要将原始SQL语句通过StringReader转换为可读取的流形式提供给parse方法进行解析。 Select select = (Select) parserManager.parse(new StringReader(src)); - - // 从Select对象中获取其查询主体部分,即PlainSelect对象,它包含了查询语句的具体内容,如查询条件、字段等。 PlainSelect selectBody = (PlainSelect) select.getSelectBody(); - // 将PlainSelect对象转换为字符串形式,得到初步处理后的SQL语句。 - // 这里主要是为了后续方便进行用户ID等信息的替换操作。 + // 过滤客户 String sql = selectBody.toString(); - // 调用processUserId方法对初步处理后的SQL语句进行用户ID的替换操作,将用户ID占位符替换为实际的用户ID。 + // 过滤用户ID sql = this.processUserId(sql); - // 返回处理后的SQL语句。 + // 获得SQL return sql; } catch (Exception e) { e.printStackTrace(); } - // 如果在处理过程中出现异常,则返回原始的SQL语句。 return src; } -} \ No newline at end of file + + +} diff --git a/exam-api/src/main/java/com/yf/exam/aspect/mybatis/UpdateInterceptor.java b/exam-api/src/main/java/com/yf/exam/aspect/mybatis/UpdateInterceptor.java index c85e5f0..8baae8f 100644 --- a/exam-api/src/main/java/com/yf/exam/aspect/mybatis/UpdateInterceptor.java +++ b/exam-api/src/main/java/com/yf/exam/aspect/mybatis/UpdateInterceptor.java @@ -1,188 +1,80 @@ -// 定义包路径,用于存放更新拦截器相关的类。这个包名表明该类属于特定的项目模块(com.yf.exam)下的aspect.mybatis部分, -// 通常用于组织和管理与MyBatis相关的切面逻辑代码。 package com.yf.exam.aspect.mybatis; -// 导入MyBatis-Plus的抽象SQL解析处理器类,它提供了一些基础的SQL解析处理功能, -// 本类继承自该类以便在处理更新操作时利用其相关功能或遵循其处理规范。 import com.baomidou.mybatisplus.extension.handlers.AbstractSqlParserHandler; - -// 导入Apache Commons Lang3库中的数组工具类,用于对数组进行各种操作, -// 如合并数组等,在本类中用于合并对象的字段数组(当存在父类字段时)。 import org.apache.commons.lang3.ArrayUtils; - -// 导入MyBatis中的执行器接口类,它是MyBatis执行SQL语句的核心组件,负责实际执行数据库操作, -// 在本类中作为拦截的目标对象类型,通过拦截其update方法来实现自动设置创建时间和更新时间的功能。 import org.apache.ibatis.executor.Executor; - -// 导入MyBatis中的映射语句类,它包含了关于SQL语句的映射信息, -// 如SQL语句的ID、参数映射、结果映射等,在本类中用于获取SQL语句的相关属性,如语句类型等, -// 以便根据不同的操作类型(插入、更新等)来处理创建时间和更新时间的赋值。 import org.apache.ibatis.mapping.MappedStatement; - -// 导入MyBatis中的SQL命令类型枚举类,用于表示不同类型的SQL命令, -// 如SELECT、INSERT、UPDATE、DELETE等,在本类中用于判断当前拦截的SQL语句是何种类型的操作, -// 从而确定是否需要对创建时间和更新时间进行赋值。 import org.apache.ibatis.mapping.SqlCommandType; - -// 导入MyBatis的拦截器接口类,定义了拦截器的基本行为和方法, -// 本类实现了该接口以作为一个MyBatis的拦截器来拦截更新语句的执行过程,实现自动设置时间的功能。 import org.apache.ibatis.plugin.Interceptor; - -// 导入MyBatis的拦截器注解类,用于标注一个类是MyBatis的拦截器并指定拦截的目标和方法, -// 本类通过该注解指定了要拦截Executor类的update方法。 import org.apache.ibatis.plugin.Intercepts; - -// 导入MyBatis的拦截器调用类,用于在拦截器方法中传递被拦截方法的调用信息, -// 包括被拦截的目标对象、方法参数等,在本类的intercept方法中会接收到该对象来处理拦截逻辑。 import org.apache.ibatis.plugin.Invocation; - -// 导入MyBatis的插件包装类,用于将拦截器包装成MyBatis可识别的插件形式, -// 在本类的plugin方法中会使用该类来包装目标对象以便实现拦截功能。 import org.apache.ibatis.plugin.Plugin; - -// 导入MyBatis的拦截器签名类,用于定义拦截器拦截的具体目标、方法和参数类型, -// 在本类的@Intercepts注解中会使用该类来指定具体的拦截信息。 import org.apache.ibatis.plugin.Signature; -// 导入Java标准库中的反射字段类,用于通过反射操作对象的私有字段, -// 在本类中用于获取和设置对象的创建时间和更新时间字段的值。 import java.lang.reflect.Field; - -// 导入Java标准库中的时间戳类,用于表示某个特定时刻的时间点, -// 在本类中用于设置创建时间和更新时间为当前的时间戳,以记录操作发生的准确时间。 import java.sql.Timestamp; - -// 导入Java标准库中的对象工具类,提供了一些用于比较和操作对象的方法, -// 在本类中用于比较字段名与预定义的创建时间、更新时间字段名是否相等。 import java.util.Objects; - -// 导入Java标准库中的属性类,用于存储和管理键值对形式的属性信息, -// 在本类中作为Interceptor接口的setProperties方法的参数类型,虽然在本类代码中该方法暂未实现具体功能, -// 但它是符合Interceptor接口规范的一部分,可用于接收外部配置的属性信息来动态调整拦截器的行为。 import java.util.Properties; /** - * 该类是一个更新拦截器,主要功能是自动给创建时间和更新时间字段赋值。 - * 它会拦截MyBatis执行器(Executor)的update方法,根据操作类型(插入或更新)以及对象的字段情况, - * 为创建时间和更新时间字段设置当前的时间戳值。 + * 自动给创建时间个更新时间加值 * @author bool */ @Intercepts(value = {@Signature(type = Executor.class, method = "update", args = {MappedStatement.class, Object.class})}) -// 使用@Intercepts注解并通过@Signature指定该类作为MyBatis的拦截器要拦截的目标和方法。 -// 这里拦截的是Executor类的update方法,并且该方法的参数类型为MappedStatement和Object。 public class UpdateInterceptor extends AbstractSqlParserHandler implements Interceptor { /** - * 定义创建时间字段的名称常量,用于在后续代码中方便地识别和操作对象中的创建时间字段。 + * 创建时间 */ private static final String CREATE_TIME = "createTime"; - /** - * 定义更新时间字段的名称常量,用于在后续代码中方便地识别和操作对象中的更新时间字段。 + * 更新时间 */ private static final String UPDATE_TIME = "updateTime"; - /** - * 拦截器的核心方法,用于在目标方法(Executor的update方法)被调用时进行拦截处理。 - * - * @param invocation 包含了被拦截方法的调用信息,如目标对象、方法参数等。 - * @return 返回处理后的结果,可能是继续执行被拦截方法后的结果,也可能是经过拦截器修改后的结果。 - * @throws Throwable 如果在拦截处理过程中出现异常,则抛出。 - */ @Override public Object intercept(Invocation invocation) throws Throwable { - // 从invocation对象的参数数组中获取第一个参数,即MappedStatement对象, - // 它包含了关于SQL语句的映射信息,用于后续获取SQL命令类型等操作。 MappedStatement mappedStatement = (MappedStatement) invocation.getArgs()[0]; - - // 获取当前SQL语句的类型,通过MappedStatement对象的getSqlCommandType方法获取。 - // 该类型是一个枚举值,如SELECT、INSERT、UPDATE、DELETE等,用于判断当前拦截的SQL语句是何种类型的操作。 + // SQL操作命令 SqlCommandType sqlCommandType = mappedStatement.getSqlCommandType(); - - // 从invocation对象的参数数组中获取第二个参数,即要进行新增或修改操作的对象参数, - // 后续会通过反射操作该对象来设置创建时间和更新时间字段的值。 + // 获取新增或修改的对象参数 Object parameter = invocation.getArgs()[1]; - - // 获取对象中所有的私有成员变量(对应表字段),通过反射获取parameter对象的声明字段数组。 + // 获取对象中所有的私有成员变量(对应表字段) Field[] declaredFields = parameter.getClass().getDeclaredFields(); - - // 判断parameter对象的父类是否存在,如果存在则获取父类的声明字段数组, - // 并将其与之前获取的子类声明字段数组进行合并,以获取完整的包含父类和子类字段的数组。 - if (parameter.getClass().getSuperclass()!= null) { + if (parameter.getClass().getSuperclass() != null) { Field[] superField = parameter.getClass().getSuperclass().getDeclaredFields(); declaredFields = ArrayUtils.addAll(declaredFields, superField); } - // 用于临时存储当前遍历到的字段名,以便后续与预定义的创建时间、更新时间字段名进行比较。 String fieldName = null; - - // 遍历获取到的所有字段数组(包含父类和子类字段),对每个字段进行处理。 for (Field field : declaredFields) { fieldName = field.getName(); - - // 如果当前遍历到的字段名与预定义的创建时间字段名相等,说明找到了创建时间字段。 if (Objects.equals(CREATE_TIME, fieldName)) { - - // 如果当前SQL语句的操作类型是插入操作(INSERT),则需要为创建时间字段设置当前时间。 if (SqlCommandType.INSERT.equals(sqlCommandType)) { - - // 通过反射设置该字段可访问,因为私有字段默认是不可直接访问的。 field.setAccessible(true); - - // 使用反射设置该字段的值为当前的时间戳,通过System.currentTimeMillis()获取当前时间的毫秒数, - // 再创建一个Timestamp对象来表示该时间点,从而为创建时间字段赋值。 field.set(parameter, new Timestamp(System.currentTimeMillis())); } } - - // 如果当前遍历到的字段名与预定义的更新时间字段名相等,说明找到了更新时间字段。 if (Objects.equals(UPDATE_TIME, fieldName)) { - - // 如果当前SQL语句的操作类型是插入操作(INSERT)或者更新操作(UPDATE), - // 则需要为更新时间字段设置当前时间。 if (SqlCommandType.INSERT.equals(sqlCommandType) || SqlCommandType.UPDATE.equals(sqlCommandType)) { - - // 通过反射设置该字段可访问,因为私有字段默认是不可直接访问的。 field.setAccessible(true); - - // 使用反射设置该字段的值为当前的时间戳,通过System.currentTimeMillis()获取当前时间的毫秒数, - // 再创建一个Timestamp对象来表示该时间点,从而为更新时间字段赋值。 field.set(parameter, new Timestamp(System.currentTimeMillis())); + } } } - - // 继续执行被拦截的Executor的update方法的原有逻辑,经过上述处理后, - // 已经为创建时间和更新时间字段设置了合适的值(如果符合条件的话),现在继续执行原始的更新操作。 return invocation.proceed(); } - /** - * 将拦截器包装成MyBatis可识别的插件形式的方法。 - * - * @param target 要包装的目标对象,通常是被拦截的对象,如Executor等。 - * @return 返回包装后的对象,以便MyBatis能够正确识别并应用拦截器的功能。 - */ @Override public Object plugin(Object target) { - // 如果目标对象是Executor类型,说明是我们要拦截的对象, - // 则使用Plugin.wrap方法将拦截器(this)包装到目标对象上,以便实现拦截功能。 if (target instanceof Executor) { return Plugin.wrap(target, this); } - - // 如果目标对象不是Executor类型,说明不是我们要拦截的对象,直接返回该目标对象即可。 return target; } - /** - * 设置拦截器属性的方法,目前该方法在本类中暂未实现具体功能, - * 但它是符合Interceptor接口规范的一部分,可用于接收外部配置的属性信息来动态调整拦截器的行为。 - * - * @param properties 包含了外部配置的属性信息的Properties对象。 - */ @Override public void setProperties(Properties properties) { - // 这里暂时没有具体的设置属性操作,可根据后续需求添加相关逻辑来处理接收到的属性信息。 } -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/aspect/utils/InjectUtils.java b/exam-api/src/main/java/com/yf/exam/aspect/utils/InjectUtils.java index 77ed253..4b47fee 100644 --- a/exam-api/src/main/java/com/yf/exam/aspect/utils/InjectUtils.java +++ b/exam-api/src/main/java/com/yf/exam/aspect/utils/InjectUtils.java @@ -1,128 +1,99 @@ -// 定义包路径,用于存放注入工具类相关的代码。这个包名表明该类属于特定的项目模块(com.yf.exam)下的aspect.utils部分, -// 通常用于组织和管理与注入操作相关的工具类代码。 package com.yf.exam.aspect.utils; -// 导入FastJSON库,它是一个用于将Java对象与JSON字符串进行相互转换的高性能库, -// 在本类的restError方法中用于将API响应对象转换为JSON字符串以便写入HTTP响应中。 import com.alibaba.fastjson.JSON; - -// 导入API错误类,它可能定义了一系列表示不同类型API错误的常量或属性, -// 在本类的restError方法中用于创建包含特定错误信息的API响应对象。 import com.yf.exam.core.api.ApiError; - -// 导入API响应类,它用于封装API调用的返回结果,包括成功的结果以及可能出现的错误信息等, -// 在本类的restError方法中用于创建要返回给客户端的错误响应对象。 import com.yf.exam.core.api.ApiRest; - -// 导入Lombok的Log4j2注解,用于简化日志记录的配置,通过该注解可以方便地在类中使用Log4j2进行日志输出。 import lombok.extern.log4j.Log4j2; - -// 导入Spring框架的组件注解,用于标记该类是一个Spring组件,这样Spring容器可以对其进行管理和实例化, -// 使其能够在Spring应用程序中被其他组件所使用。 import org.springframework.stereotype.Component; -// 导入Java标准库中的HTTP响应类,用于处理HTTP协议相关的响应操作, -// 在本类的restError方法中用于设置响应的编码、内容类型以及写入响应内容等操作。 import javax.servlet.http.HttpServletResponse; - -// 导入Java标准库中的IO异常类,用于处理输入输出操作过程中可能出现的异常情况, -// 在本类的restError方法以及其他可能涉及到IO操作的地方用于捕获和处理相关异常。 import java.io.IOException; - -// 导入Java标准库中的反射字段类,用于通过反射操作对象的私有字段, -// 在本类的setValue和getFiled方法中用于获取和设置对象的指定字段的值。 import java.lang.reflect.Field; /** - * 注入工具类,提供了一些用于对象字段赋值以及处理错误响应返回等功能的方法。 + * 注入工具类 * @author bool * @date 2019-07-17 09:32 */ -@Log4j2 // 使用Log4j2注解启用日志记录功能,方便在类中记录相关操作的日志信息。 -@Component // 将该类标记为Spring组件,使其能够被Spring容器管理和使用。 +@Log4j2 +@Component public class InjectUtils { + + /** - * 给指定对象的指定字段赋值的方法。 + * 给对象字段赋值 * - * @param object 要进行赋值操作的对象。 - * @param value 要赋给指定字段的值。 - * @param fields 一个可变参数,用于指定要赋值的字段名数组。 - * @throws Exception 如果在获取字段或设置字段值的过程中出现异常,则抛出。 + * @param object 赋值的对象 + * @param value 值 + * @param fields 字段 + * @throws Exception 异常 */ public void setValue(Object object, Object value, String... fields) throws Exception { - // 遍历要赋值的字段名数组 + + //设置同类的属性 for (String fieldName : fields) { - // 根据对象的类和字段名获取对应的字段对象 - Field field = this.getFiled(object.getClass(), fieldName); - // 如果获取到的字段对象为空,说明未找到对应的字段,继续下一个字段的处理。 - if (field == null) { + //获取当前 + Field field = this.getFiled(object.getClass(), fieldName); + if(field == null){ continue; } - // 通过反射设置该字段可访问,因为私有字段默认是不可直接访问的。 field.setAccessible(true); - - // 使用反射设置该字段的值为传入的值,即将指定的值赋给对象的指定字段。 field.set(object, value); } + } /** - * 根据目标类和字段名获取对应的字段对象的方法。 + * 获取字段名对应的字段 * - * @param clazz 目标类,即要在其中查找字段的类。 - * @param fieldName 要查找的字段名。 - * @return 返回找到的字段对象,如果未找到则返回null。 + * @param clazz 目标类 + * @param fieldName 字段名 */ private Field getFiled(Class clazz, String fieldName) { - System.out.println("注入的类:" + clazz.toString()); // 打印当前正在查找字段的目标类的信息,方便调试查看。 - // 尝试获取当前类中指定字段名的字段对象 + System.out.println("注入的类:"+clazz.toString()); + + //是否具有包含关系 try { + //获取当前类的属性 return clazz.getDeclaredField(fieldName); - } catch (Exception e) { - log.error(clazz.toString() + ": not exist field, try superclass " + fieldName); // 如果获取字段失败,记录错误日志, - // 提示在当前类中不存在指定字段, - // 并准备尝试在父类中查找。 + }catch (Exception e){ - // 如果当前类未找到指定字段且存在父类,则递归调用本方法在父类中继续查找指定字段。 - if (clazz.getSuperclass()!= null) { + log.error(clazz.toString() + ": not exist field, try superclass " + fieldName); + + //如果为空且存在父类,则往上找 + if(clazz.getSuperclass()!=null){ return this.getFiled(clazz.getSuperclass(), fieldName); } - // 如果在当前类及其所有父类中都未找到指定字段,则返回null。 return null; } } + /** - * 用于处理错误情况并将错误结果返回给客户端的方法,通过设置HTTP响应的相关属性和写入错误响应内容来实现。 - * - * @param response HTTP响应对象,用于向客户端发送响应信息。 - * @throws IOException 如果在设置响应属性或写入响应内容过程中出现IO异常,则抛出。 + * 打印结果返回 + * @param response + * @throws IOException */ public static void restError(HttpServletResponse response) { + try { - // 创建一个包含特定API错误信息的API响应对象,这里使用了ApiError.ERROR_10010002作为错误码, - // 具体含义可能在ApiError类中定义,通常表示某种常见的错误情况。 - ApiRest apiRest = new ApiRest(ApiError.ERROR_10010002); - // 设置HTTP响应的字符编码为UTF-8,确保能够正确处理和传输各种字符,特别是中文等非ASCII字符。 + //固定错误 + ApiRest apiRest = new ApiRest(ApiError.ERROR_10010002); response.setCharacterEncoding("UTF-8"); - - // 设置HTTP响应的内容类型为application/json,表明返回给客户端的内容是JSON格式的数据。 response.setContentType("application/json"); - - // 将创建的API响应对象转换为JSON字符串,并写入到HTTP响应的输出流中,以便客户端能够接收到错误信息。 response.getWriter().write(JSON.toJSONString(apiRest)); - - // 关闭HTTP响应的写入流,释放相关资源。 response.getWriter().close(); - } catch (IOException e) { - // 如果在设置响应属性或写入响应内容过程中出现IO异常,这里只是简单地捕获异常, - // 可以根据实际需求进一步处理异常,比如记录更详细的日志信息等。 + + }catch (IOException e){ + } + } -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/config/CorsConfig.java b/exam-api/src/main/java/com/yf/exam/config/CorsConfig.java index 83b86ab..e88cb08 100644 --- a/exam-api/src/main/java/com/yf/exam/config/CorsConfig.java +++ b/exam-api/src/main/java/com/yf/exam/config/CorsConfig.java @@ -1,81 +1,35 @@ package com.yf.exam.config; -// 导入Spring Boot中用于注册Servlet过滤器的类,通过它可以将自定义的过滤器注册到Servlet容器中, -// 并配置相关属性,如过滤器的执行顺序等。在本类中用于注册跨域过滤器(CorsFilter)。 import org.springframework.boot.web.servlet.FilterRegistrationBean; - -// 导入Spring框架中用于标记一个类是配置类的注解,被该注解标记的类可以在其中定义各种Bean配置方法, -// 这些方法会被Spring容器在启动时自动识别并执行,用于创建和配置应用程序所需的各种组件。 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; - -// 导入Spring框架中用于指定顺序的接口,实现该接口可以定义对象的顺序, -// 在本类中用于指定跨域过滤器(CorsFilter)在过滤器链中的执行顺序,使其具有最高优先级。 import org.springframework.core.Ordered; - -// 导入Spring框架中用于配置跨域资源共享(Cors)的类,通过它可以设置允许的源、请求头、请求方法等跨域相关的配置项。 import org.springframework.web.cors.CorsConfiguration; - -// 导入Spring框架中基于URL的跨域配置源类,它允许根据不同的URL模式来配置不同的跨域设置, -// 在本类中用于创建一个基于URL的跨域配置源,并将统一的跨域配置应用到所有的URL路径("**")上。 import org.springframework.web.cors.UrlBasedCorsConfigurationSource; - -// 导入Spring框架中实现跨域过滤功能的类,它会根据配置的跨域规则对请求进行过滤和处理, -// 以实现允许跨域访问的功能。在本类中创建该过滤器并将其注册到Servlet容器中。 import org.springframework.web.filter.CorsFilter; + /** - * 网关全局设置类,主要功能是配置允许跨域访问的相关设置。 - * 通过创建和注册跨域过滤器(CorsFilter),并设置允许的源、请求头、请求方法等配置项, - * 使得应用程序能够处理来自不同域的请求,避免跨域访问限制。 - * + * 网关全局设置,允许跨域 * @author bool * @date 2019-08-13 17:28 */ -@Configuration // 标记该类为Spring框架的配置类,表明其中可以定义各种Bean的创建和配置方法。 + +@Configuration public class CorsConfig { - /** - * 定义一个Bean方法,用于创建并返回一个FilterRegistrationBean对象,该对象用于注册跨域过滤器(CorsFilter)。 - * - * @return 返回一个FilterRegistrationBean对象,其中包含了配置好的跨域过滤器以及相关的执行顺序等设置。 - */ @Bean public FilterRegistrationBean corsFilter() { - // 创建一个基于URL的跨域配置源对象,它将作为跨域配置的基础,用于后续设置跨域规则并应用到特定的URL路径上。 UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); - - // 创建一个CorsConfiguration对象,用于设置具体的跨域配置项,如允许的源、请求头、请求方法等。 CorsConfiguration config = new CorsConfiguration(); - - // 设置是否允许携带凭证(如Cookie等)进行跨域请求,这里设置为true,表示允许携带凭证。 config.setAllowCredentials(true); - - // 添加允许的源,这里使用CorsConfiguration.ALL表示允许所有的源进行跨域访问。 - // 可以根据实际需求设置具体的源地址,如"http://example.com"等,多个源地址可以多次调用addAllowedOrigin方法添加。 config.addAllowedOrigin(CorsConfiguration.ALL); - - // 添加允许的请求头,同样使用CorsConfiguration.ALL表示允许所有的请求头进行跨域请求。 - // 如果需要限制特定的请求头,可以通过其他方式设置具体的请求头列表。 config.addAllowedHeader(CorsConfiguration.ALL); - - // 添加允许的请求方法,使用CorsConfiguration.ALL表示允许所有的请求方法进行跨域请求, - // 包括常见的GET、POST、PUT、DELETE等方法。也可以根据实际需求设置具体的请求方法列表。 config.addAllowedMethod(CorsConfiguration.ALL); - - // 将上述设置好的跨域配置应用到所有的URL路径上,"**"表示匹配任意的URL路径。 - // 这样,对于应用程序接收到的任何请求,都会根据这个统一的跨域配置进行处理。 source.registerCorsConfiguration("/**", config); - - // 创建一个FilterRegistrationBean对象,用于注册跨域过滤器(CorsFilter)。 - // 将创建好的基于上述跨域配置源的跨域过滤器(new CorsFilter(source))作为参数传入FilterRegistrationBean的构造函数。 FilterRegistrationBean bean = new FilterRegistrationBean(new CorsFilter(source)); - - // 设置跨域过滤器在过滤器链中的执行顺序,这里设置为Ordered.HIGHEST_PRECEDENCE,表示具有最高优先级。 - // 即该过滤器会在其他过滤器之前首先对请求进行处理,以确保跨域配置能够最先生效。 bean.setOrder(Ordered.HIGHEST_PRECEDENCE); - - // 返回配置好的FilterRegistrationBean对象,完成跨域过滤器的注册和相关设置。 return bean; } -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/config/MultipartConfig.java b/exam-api/src/main/java/com/yf/exam/config/MultipartConfig.java index 69d16f5..75e6dfa 100644 --- a/exam-api/src/main/java/com/yf/exam/config/MultipartConfig.java +++ b/exam-api/src/main/java/com/yf/exam/config/MultipartConfig.java @@ -1,67 +1,28 @@ -// 定义包路径,用于存放文件上传配置类相关的代码。这个包名表明该类属于特定的项目模块(com.yf.exam)下的config部分, -// 通常用于组织和管理与文件上传配置相关的代码。 package com.yf.exam.config; -// 导入Spring Boot中用于创建和配置多部分(Multipart)上传相关设置的工厂类。 -// 通过这个工厂类可以方便地设置如单个文件大小限制、总上传数据大小限制等参数, -// 在本类中用于创建和配置文件上传的相关限制。 import org.springframework.boot.web.servlet.MultipartConfigFactory; - -// 导入Spring框架中用于标记一个方法返回值为Spring Bean的注解。 -// 被该注解标记的方法,其返回值会被Spring容器管理,作为一个可被注入到其他组件中的Bean实例。 -// 在本类中用于将multipartConfigElement方法返回的MultipartConfigElement对象注册为Spring Bean。 import org.springframework.context.annotation.Bean; - -// 导入Spring框架中用于标记一个类是配置类的注解。 -// 被该注解标记的类可以在其中定义各种Bean配置方法,这些方法会被Spring容器在启动时自动识别并执行, -// 用于创建和配置应用程序所需的各种组件。在本类中用于标记该类为Spring配置类,以便进行文件上传相关的配置。 import org.springframework.context.annotation.Configuration; - -// 导入Spring框架中用于处理数据大小单位转换和表示的工具类。 -// 它可以方便地将不同单位的数据大小表示转换为统一的格式, -// 在本类中用于设置文件上传的单个文件大小和总上传数据大小的限制,以兆字节(MB)为单位进行设置。 import org.springframework.util.unit.DataSize; -// 导入Java标准库中的用于表示多部分(Multipart)上传配置元素的接口。 -// 这个接口定义了多部分上传相关的配置参数,如文件大小限制、请求大小限制等, -// 在本类中通过MultipartConfigFactory创建并返回实现了该接口的对象,以完成文件上传的配置设置。 import javax.servlet.MultipartConfigElement; /** - * 文件上传配置类,主要功能是配置文件上传过程中的相关参数, -// 包括单个文件的最大允许大小以及整个上传请求的最大允许数据大小等。 - * + * 文件上传配置 * @author bool * @date 2019-07-29 16:23 */ -@Configuration // 使用该注解标记此为Spring配置类,表明这个类是用来进行Spring应用程序的配置工作的。 +@Configuration public class MultipartConfig { - /** - * 定义一个方法,并使用@Bean注解将其返回值声明为Spring Bean。 - * 该方法用于创建并返回一个MultipartConfigElement对象,这个对象包含了文件上传的具体配置参数。 - * - * @return 返回一个MultipartConfigElement对象,其中设置了单个文件大小和总上传数据大小的限制等配置信息。 - */ @Bean public MultipartConfigElement multipartConfigElement() { - MultipartConfigFactory factory = new MultipartConfigFactory(); // 创建一个MultipartConfigFactory对象, - // 它是用于创建MultipartConfigElement对象的工厂类, - // 通过它可以方便地设置各种文件上传的配置参数。 - - // 设置单个文件的最大允许大小。 - // 这里使用DataSize.ofMegabytes(5000L)将大小设置为5000兆字节(MB), - // 即限制单个上传的文件大小不能超过5000MB。 + MultipartConfigFactory factory = new MultipartConfigFactory(); + // 单个数据大小 factory.setMaxFileSize(DataSize.ofMegabytes(5000L)); - - // 设置整个上传请求的最大允许数据大小。 - // 同样使用DataSize.ofMegabytes(5000L)将大小设置为5000兆字节(MB), - // 也就是说,整个上传请求(包括可能上传的多个文件以及其他相关数据)的总数据量不能超过5000MB。 + /// 总上传数据大小 factory.setMaxRequestSize(DataSize.ofMegabytes(5000L)); - - // 通过MultipartConfigFactory对象的createMultipartConfig方法创建并返回一个MultipartConfigElement对象, - // 这个对象包含了我们刚刚设置的单个文件大小和总上传数据大小等配置信息, - // 它会被Spring容器管理并应用到文件上传的相关处理中。 return factory.createMultipartConfig(); } -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/config/MybatisConfig.java b/exam-api/src/main/java/com/yf/exam/config/MybatisConfig.java index 1645a7f..642fc25 100644 --- a/exam-api/src/main/java/com/yf/exam/config/MybatisConfig.java +++ b/exam-api/src/main/java/com/yf/exam/config/MybatisConfig.java @@ -1,70 +1,37 @@ -// 定义包路径,用于存放MyBatis配置类相关的代码。这个包名表明该类属于特定的项目模块(com.yf.exam)下的config部分, -// 通常用于组织和管理与MyBatis配置相关的代码。 package com.yf.exam.config; -// 导入自定义的查询拦截器类,该拦截器用于在查询操作时进行一些额外的处理, -// 比如可能会根据特定条件对查询语句进行修改、添加过滤条件等操作。 import com.yf.exam.aspect.mybatis.QueryInterceptor; - -// 导入自定义的更新拦截器类,该拦截器用于在插入或更新操作时进行相关处理, -// 例如自动设置创建时间、更新时间等字段的值。 import com.yf.exam.aspect.mybatis.UpdateInterceptor; - -// 导入MyBatis与Spring集成时用于扫描MyBatis映射接口的注解。 -// 通过该注解可以指定要扫描的包路径,以便Spring能够自动发现并注册MyBatis的映射接口, -// 使得这些接口可以被正确地用于数据库操作。 import org.mybatis.spring.annotation.MapperScan; - -// 导入Spring框架中用于标记一个方法返回值为Spring Bean的注解。 -// 被该注解标记的方法,其返回值会被Spring容器管理,作为一个可被注入到其他组件中的Bean实例。 -// 在本类中用于将queryInterceptor和updateInterceptor方法返回的拦截器对象注册为Spring Bean。 import org.springframework.context.annotation.Bean; - -// 导入Spring框架中用于标记一个类是配置类的注解。 -// 被该注解标记的类可以在其中定义各种Bean配置方法,这些方法会被Spring容器在启动时自动识别并执行, -// 用于创建和配置应用程序所需的各种组件。在本类中用于标记该类为Spring配置类,以便进行MyBatis相关的配置。 import org.springframework.context.annotation.Configuration; /** - * Mybatis过滤器配置类,主要功能是配置MyBatis的相关过滤器, - * 包括查询拦截器和更新拦截器等,并设置相关参数。同时通过注解指定MyBatis映射接口的扫描路径。 - * 注意:必须按顺序进行配置,否则容易出现业务异常。 + * Mybatis过滤器配置 + * 注意:必须按顺序进行配置,否则容易出现业务异常 * @author bool */ -@Configuration // 使用该注解标记此为Spring配置类,表明这个类是用来进行Spring应用程序的配置工作的。 -@MapperScan("com.yf.exam.modules.**.mapper") // 使用MapperScan注解指定要扫描的MyBatis映射接口所在的包路径, - // "com.yf.exam.modules.**.mapper"表示会扫描com.yf.exam.modules包及其子包下的所有mapper接口。 - +@Configuration +@MapperScan("com.yf.exam.modules.**.mapper") public class MybatisConfig { /** - * 定义一个方法,并使用@Bean注解将其返回值声明为Spring Bean。 - * 该方法用于创建并返回一个查询拦截器(QueryInterceptor)对象,用于在查询操作时进行拦截处理。 - * - * @return 返回一个查询拦截器(QueryInterceptor)对象,该对象已进行了相关设置(如设置查询限制)。 + * 数据查询过滤器 */ - @Bean // 将该方法返回的查询拦截器对象声明为Spring Bean,以便Spring容器能够管理和注入到其他需要使用的地方。 + @Bean public QueryInterceptor queryInterceptor() { - QueryInterceptor query = new QueryInterceptor(); // 创建一个新的查询拦截器对象。 - - // 设置查询限制,这里将查询限制设置为 -1L,具体含义可能根据QueryInterceptor类的内部逻辑而定, - // 可能表示不限制查询结果的数量或者有其他特殊的处理方式与该值相关。 + QueryInterceptor query = new QueryInterceptor(); query.setLimit(-1L); - - // 返回设置好的查询拦截器对象,该对象将被Spring容器管理并在合适的查询操作场景中被调用执行拦截处理。 return query; } /** - * 定义一个方法,并使用@Bean注解将其返回值声明为Spring Bean。 - * 该方法用于创建并返回一个更新拦截器(UpdateInterceptor)对象,用于在插入或更新操作时进行拦截处理。 - * - * @return 返回一个更新拦截器(UpdateInterceptor)对象,该对象可直接用于插入或更新操作的拦截处理。 + * 插入数据过滤器 */ - @Bean // 将该方法返回的更新拦截器对象声明为Spring Bean,以便Spring容器能够管理和注入到其他需要使用的地方。 + @Bean public UpdateInterceptor updateInterceptor() { - // 创建一个新的更新拦截器对象,这里没有进行额外的设置操作(可能在UpdateInterceptor类内部有默认的处理逻辑), - // 直接返回该对象,它将被Spring容器管理并在合适的插入或更新操作场景中被调用执行拦截处理。 return new UpdateInterceptor(); } + + } \ No newline at end of file diff --git a/exam-api/src/main/java/com/yf/exam/config/ScheduledConfig.java b/exam-api/src/main/java/com/yf/exam/config/ScheduledConfig.java index 994b761..b08f96f 100644 --- a/exam-api/src/main/java/com/yf/exam/config/ScheduledConfig.java +++ b/exam-api/src/main/java/com/yf/exam/config/ScheduledConfig.java @@ -1,182 +1,77 @@ -// 定义包路径,用于存放任务调度配置类相关的代码。这个包名表明该类属于特定的项目模块(com.yf.exam)下的config部分, -// 通常用于组织和管理与任务调度配置相关的代码。 package com.yf.exam.config; -// 导入Lombok的Log4j2注解,用于简化日志记录的配置,通过该注解可以方便地在类中使用Log4j2进行日志输出。 import lombok.extern.log4j.Log4j2; - -// 导入Spring框架中用于处理异步方法执行过程中未捕获异常的处理器接口。 -// 当异步方法抛出异常且未在方法内部被捕获时,会由该处理器来处理异常情况, -// 在本类中实现该接口来定义异步未捕获异常的处理逻辑。 import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler; - -// 导入Spring框架中用于标记一个方法返回值为Spring Bean的注解。 -// 被该注解标记的方法,其返回值会被Spring容器管理,作为一个可被注入到其他组件中的Bean实例。 -// 在本类中用于将taskScheduler和asyncExecutor等方法返回的对象注册为Spring Bean。 import org.springframework.context.annotation.Bean; - -// 导入Spring框架中用于标记一个类是配置类的注解。 -// 被该注解标记的类可以在其中定义各种Bean配置方法,这些方法会被Spring容器在启动时自动识别并执行, -// 用于创建和配置应用程序所需的各种组件。在本类中用于标记该类为Spring配置类,以便进行任务调度相关的配置。 import org.springframework.context.annotation.Configuration; - -// 导入Spring框架中用于配置异步任务执行相关设置的接口。 -// 实现该接口可以定义异步任务执行的线程池等配置信息,在本类中实现该接口来配置异步任务执行的相关参数。 import org.springframework.scheduling.annotation.AsyncConfigurer; - -// 导入Spring框架中用于启用异步任务执行功能的注解。 -// 当在类上添加该注解后,Spring会自动识别并处理类中的异步方法,使其能够在独立的线程中执行。 -// 在本类上添加该注解以启用异步任务执行功能。 import org.springframework.scheduling.annotation.EnableAsync; - -// 导入Spring框架中用于启用任务调度功能的注解。 -// 当在类上添加该注解后,Spring会自动识别并处理类中的定时任务等调度相关的设置,使其能够按照预定的时间执行任务。 -// 在本类上添加该注解以启用任务调度功能。 import org.springframework.scheduling.annotation.EnableScheduling; - -// 导入Spring框架中用于配置任务调度相关设置的接口。 -// 实现该接口可以定义任务调度的线程池、任务注册等配置信息,在本类中实现该接口来配置任务调度的相关参数。 import org.springframework.scheduling.annotation.SchedulingConfigurer; - -// 导入Spring框架中用于执行线程池任务的执行器类。 -// 它可以创建一个线程池,并通过该线程池来执行任务,在本类的asyncExecutor方法中用于创建异步任务执行的线程池。 import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; - -// 导入Spring框架中用于调度线程池任务的调度器类。 -// 它可以创建一个线程池,并通过该线程池来调度任务的执行时间,在本类的taskScheduler方法中用于创建定时任务执行的线程池。 import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler; - -// 导入Spring框架中用于注册调度任务的类。 -// 通过它可以将需要调度执行的任务注册到相应的调度器中,在本类的configureTasks方法中用于设置任务调度器。 import org.springframework.scheduling.config.ScheduledTaskRegistrar; -// 导入Java标准库中的执行器接口,它定义了执行任务的通用规范, -// 在本类的getAsyncExecutor方法中用于返回异步任务执行的执行器对象。 import java.util.concurrent.Executor; - -// 导入Java标准库中的线程池执行器类,它是实现了线程池功能的具体类, -// 在本类的asyncExecutor方法中用于设置异步任务执行线程池的拒绝策略。 import java.util.concurrent.ThreadPoolExecutor; /** - * 任务调度配置类,主要功能是配置任务调度和异步任务执行相关的设置, - * 包括创建定时任务执行的线程池和异步任务执行的线程池,设置线程池的大小、名称前缀、 - * 等待终止时间、队列容量等参数,同时实现了处理异步未捕获异常的逻辑。 + * 任务调度配置 * @author bool */ -@Log4j2 // 使用Log4j2注解启用日志记录功能,方便在类中记录相关操作的日志信息。 -@Configuration // 使用该注解标记此为Spring配置类,表明这个类是用来进行Spring应用程序的配置工作的。 -@EnableScheduling // 使用该注解启用任务调度功能,使得Spring能够识别并处理类中的定时任务等调度相关设置。 -@EnableAsync // 使用该注解启用异步任务执行功能,使得Spring能够识别并处理类中的异步方法,使其能够在独立的线程中执行。 +@Log4j2 +@Configuration +@EnableScheduling +@EnableAsync public class ScheduledConfig implements SchedulingConfigurer, AsyncConfigurer { /** - * 定义一个方法,并使用@Bean注解将其返回值声明为Spring Bean。 - * 该方法用于创建并返回一个线程池任务调度器(ThreadPoolTaskScheduler)对象,用于定时任务的执行调度。 - * - * @return 返回一个线程池任务调度器(ThreadPoolTaskScheduler)对象,该对象已进行了相关设置(如线程池大小、名称前缀等)。 + * 定时任务使用的线程池 + * @return */ - @Bean(destroyMethod = "shutdown", name = "taskScheduler") // 将该方法返回的线程池任务调度器对象声明为Spring Bean, - // 并指定销毁方法为"shutdown",以便在容器关闭时正确关闭线程池。 - public ThreadPoolTaskScheduler taskScheduler() { - ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler(); // 创建一个新的线程池任务调度器对象。 - - // 设置线程池的大小,即同时可执行的定时任务数量,这里设置为10,表示线程池最多可同时执行10个定时任务。 + @Bean(destroyMethod = "shutdown", name = "taskScheduler") + public ThreadPoolTaskScheduler taskScheduler(){ + ThreadPoolTaskScheduler scheduler = new ThreadPoolTaskScheduler(); scheduler.setPoolSize(10); - - // 设置线程的名称前缀,用于在日志等场景中方便识别线程所属的任务调度器,这里设置为"task-", - // 生成的线程名称可能类似"task-1"、"task-2"等。 scheduler.setThreadNamePrefix("task-"); - - // 设置线程池在关闭时等待任务完成的时间,单位为秒,这里设置为600秒(10分钟), - // 表示在容器关闭时,线程池会等待正在执行的任务完成,最长等待时间为10分钟。 scheduler.setAwaitTerminationSeconds(600); - - // 设置在关闭时是否等待任务完成,这里设置为true,表示在容器关闭时,线程池会等待所有任务完成后再关闭。 scheduler.setWaitForTasksToCompleteOnShutdown(true); - - // 返回设置好的线程池任务调度器对象,该对象将被Spring容器管理并在定时任务执行场景中被调用进行任务调度。 return scheduler; } /** - * 定义一个方法,并使用@Bean注解将其返回值声明为Spring Bean。 - * 该方法用于创建并返回一个线程池任务执行器(ThreadPoolTaskExecutor)对象,用于异步任务的执行。 - * - * @return 返回一个线程池任务执行器(ThreadPoolTaskExecutor)对象,该对象已进行了相关设置(如核心线程数、队列容量等)。 + * 异步任务执行线程池 + * @return */ - @Bean(name = "asyncExecutor") // 将该方法返回的线程池任务执行器对象声明为Spring Bean,以便Spring容器能够管理和注入到其他需要使用的地方。 + @Bean(name = "asyncExecutor") public ThreadPoolTaskExecutor asyncExecutor() { - ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); // 创建一个新的线程池任务执行器对象。 - - // 设置线程池的核心线程数,即线程池始终保持的活跃线程数量,这里设置为10,表示线程池至少会保持10个线程处于活跃状态。 + ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); executor.setCorePoolSize(10); - - // 设置线程池的队列容量,即用于存储等待执行任务的队列大小,这里设置为1000,表示队列最多可容纳1000个等待执行的任务。 executor.setQueueCapacity(1000); - - // 设置线程池中非核心线程的保持活动时间,单位为秒,这里设置为600秒(10分钟), - // 表示当非核心线程空闲时间超过10分钟时,可能会被回收。 executor.setKeepAliveSeconds(600); - - // 设置线程池的最大线程数,即线程池最多可同时拥有的线程数量,这里设置为20,表示线程池最多可扩展到20个线程同时执行任务。 executor.setMaxPoolSize(20); - - // 设置线程的名称前缀,用于在日志等场景中方便识别线程所属的任务执行器,这里设置为"taskExecutor-", - // 生成的线程名称可能类似"taskExecutor-1"、"taskExecutor-2"等。 executor.setThreadNamePrefix("taskExecutor-"); - - // 设置线程池的拒绝策略,这里采用ThreadPoolExecutor.CallerRunsPolicy(), - // 表示当线程池和队列都已满,无法再接受新任务时,会由调用线程来执行该任务,而不是直接抛出异常。 executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy()); - - // 初始化线程池,使其处于可使用状态,完成各项参数的设置和内部资源的初始化。 executor.initialize(); - - // 返回设置好的线程池任务执行器对象,该对象将被Spring容器管理并在异步任务执行场景中被调用进行任务执行。 return executor; } - /** - * 实现SchedulingConfigurer接口的方法,用于配置任务调度相关的设置。 - * 在本方法中,获取之前创建的线程池任务调度器对象,并将其设置到调度任务注册类中, - * 以便后续注册的定时任务能够使用该调度器进行任务调度。 - * - * @param scheduledTaskRegistrar 调度任务注册类对象,用于注册调度任务和设置调度器等操作。 - */ @Override public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) { - ThreadPoolTaskScheduler taskScheduler = taskScheduler(); // 获取之前创建的线程池任务调度器对象。 - - // 将获取到的线程池任务调度器对象设置到调度任务注册类中,使得后续注册的定时任务能够使用该调度器进行任务调度。 + ThreadPoolTaskScheduler taskScheduler = taskScheduler(); scheduledTaskRegistrar.setTaskScheduler(taskScheduler); } - /** - * 实现AsyncConfigurer接口的方法,用于返回异步任务执行的执行器对象。 - * 在本方法中,直接返回之前创建的线程池任务执行器对象,该对象将作为异步任务执行的执行器。 - * - * @return 返回异步任务执行的执行器对象,即之前创建的线程池任务执行器对象。 - */ @Override public Executor getAsyncExecutor() { return asyncExecutor(); } - /** - * 实现AsyncConfigurer接口的方法,用于定义异步未捕获异常的处理逻辑。 - * 在本方法中,当异步任务执行出现异常且未在方法内部被捕获时,会通过日志记录异常信息, - * 包括异常对象、执行的方法以及方法的参数等内容。 - * - * @param throwable 异步任务执行过程中抛出的异常对象。 - * @param method 执行异步任务的方法对象。 - * @param objects 执行异步任务的方法的参数对象数组。 - * @return 返回值无实际意义,这里主要是为了符合AsyncUncaughtExceptionHandler接口的定义。 - */ @Override public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() { return (throwable, method, objects) -> { - log.error("异步任务执行出现异常, message {}, method {}, params {}", throwable, method, objects); + log.error("异步任务执行出现异常, message {}, emthod {}, params {}", throwable, method, objects); }; } -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/config/ShiroConfig.java b/exam-api/src/main/java/com/yf/exam/config/ShiroConfig.java index 52d179c..cbb3f38 100644 --- a/exam-api/src/main/java/com/yf/exam/config/ShiroConfig.java +++ b/exam-api/src/main/java/com/yf/exam/config/ShiroConfig.java @@ -1,133 +1,127 @@ -// 定义包路径,用于存放Shiro配置类 package com.yf.exam.config; -import com.yf.exam.ability.shiro.CNFilterFactoryBean; // 自定义过滤器工厂类 -import com.yf.exam.ability.shiro.ShiroRealm; // 自定义Shiro领域类 -import com.yf.exam.ability.shiro.aop.JwtFilter; // JWT认证过滤器 -import lombok.extern.slf4j.Slf4j; // Lombok日志注解 -import org.apache.shiro.mgt.DefaultSessionStorageEvaluator; // Shiro默认会话存储评估器 -import org.apache.shiro.mgt.DefaultSubjectDAO; // Shiro默认主体DAO -import org.apache.shiro.mgt.SecurityManager; // Shiro安全管理器 -import org.apache.shiro.spring.LifecycleBeanPostProcessor; // Spring生命周期Bean后处理器 -import org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor; // Shiro授权属性源顾问 -import org.apache.shiro.spring.web.ShiroFilterFactoryBean; // Shiro过滤器工厂类 -import org.apache.shiro.web.mgt.DefaultWebSecurityManager; // Shiro默认Web安全管理器 -import org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator; // Spring默认顾问自动代理创建器 -import org.springframework.context.annotation.Bean; // Spring Bean注解 -import org.springframework.context.annotation.Configuration; // Spring配置注解 -import org.springframework.context.annotation.DependsOn; // Spring依赖注解 - -import javax.servlet.Filter; // Servlet过滤器接口 -import java.util.HashMap; // Java哈希映射类 -import java.util.LinkedHashMap; // Java链接哈希映射类 -import java.util.Map; // Java映射类 +import com.yf.exam.ability.shiro.CNFilterFactoryBean; +import com.yf.exam.ability.shiro.ShiroRealm; +import com.yf.exam.ability.shiro.aop.JwtFilter; +import lombok.extern.slf4j.Slf4j; +import org.apache.shiro.mgt.DefaultSessionStorageEvaluator; +import org.apache.shiro.mgt.DefaultSubjectDAO; +import org.apache.shiro.mgt.SecurityManager; +import org.apache.shiro.spring.LifecycleBeanPostProcessor; +import org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor; +import org.apache.shiro.spring.web.ShiroFilterFactoryBean; +import org.apache.shiro.web.mgt.DefaultWebSecurityManager; +import org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.DependsOn; + +import javax.servlet.Filter; +import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.Map; + /** * Shiro配置类 - * 用于配置和自定义Shiro框架的相关组件,包括安全管理器、过滤器工厂、Realm等。 * @author bool */ -@Slf4j // 使用Lombok注解,启用Log4j2日志 -@Configuration // 使用Spring注解,标记为配置类 +@Slf4j +@Configuration public class ShiroConfig { - /** - * 定义Shiro过滤器链 - * 方法用于配置Shiro过滤器链,定义哪些URL路径需要通过哪些过滤器。 - * - * @param securityManager Shiro安全管理器 - * @return ShiroFilterFactoryBean Shiro过滤器工厂Bean - */ - @Bean("shiroFilterFactoryBean") // 使用Spring注解,声明为Bean,并指定Bean名称 - public ShiroFilterFactoryBean shiroFilter(SecurityManager securityManager) { - CNFilterFactoryBean shiroFilterFactoryBean = new CNFilterFactoryBean(); // 创建自定义过滤器工厂Bean - shiroFilterFactoryBean.setSecurityManager(securityManager); // 设置安全管理器 - - // 定义过滤器链 - Map map = new LinkedHashMap<>(); // 创建拦截器映射 - - // 配置不需要认证的路径 - map.put("/exam/api/sys/user/login", "anon"); // 登录接口不需要认证 - map.put("/exam/api/sys/user/reg", "anon"); // 注册接口不需要认证 - map.put("/exam/api/sys/user/quick-reg", "anon"); // 快速注册接口不需要认证 - - // 配置其他不需要认证的静态资源路径 - map.put("/upload/file/**", "anon"); // 文件上传路径不需要认证 - map.put("/", "anon"); // 根路径不需要认证 - map.put("/v2/**", "anon"); // Swagger路径不需要认证 - map.put("/doc.html", "anon"); // Swagger文档不需要认证 - // ... 省略其他静态资源配置 - - // 添加自定义JWT过滤器 - Map filterMap = new HashMap<>(); // 创建过滤器映射 - filterMap.put("jwt", new JwtFilter()); // 添加JWT过滤器 - shiroFilterFactoryBean.setFilters(filterMap); // 设置过滤器 - - // 设置过滤器链定义 - map.put("/**", "jwt"); // 所有请求都需要通过JWT过滤器 - shiroFilterFactoryBean.setFilterChainDefinitionMap(map); // 设置过滤器链定义 - - return shiroFilterFactoryBean; // 返回Shiro过滤器工厂Bean - } - - /** - * 定义Shiro安全管理器 - * 方法用于配置Shiro安全管理器,设置自定义Realm和禁用Shiro的会话存储。 - * - * @param myRealm 自定义Shiro领域 - * @return DefaultWebSecurityManager Shiro安全管理器 - */ - @Bean("securityManager") // 使用Spring注解,声明为Bean,并指定Bean名称 - public DefaultWebSecurityManager securityManager(ShiroRealm myRealm) { - DefaultWebSecurityManager securityManager = new DefaultWebSecurityManager(); // 创建默认Web安全管理器 - securityManager.setRealm(myRealm); // 设置自定义Realm - - // 禁用Shiro的会话存储 - DefaultSubjectDAO subjectDAO = new DefaultSubjectDAO(); // 创建默认主体DAO - DefaultSessionStorageEvaluator defaultSessionStorageEvaluator = new DefaultSessionStorageEvaluator(); // 创建默认会话存储评估器 - defaultSessionStorageEvaluator.setSessionStorageEnabled(false); // 禁用会话存储 - subjectDAO.setSessionStorageEvaluator(defaultSessionStorageEvaluator); // 设置会话存储评估器 - securityManager.setSubjectDAO(subjectDAO); // 设置主体DAO - - return securityManager; // 返回安全管理器 - } - - /** - * 定义注解支持 - * 方法用于添加注解支持,使得Shiro的注解可以正常工作。 - * - * @return DefaultAdvisorAutoProxyCreator 顾问自动代理创建器 - */ - @Bean // 使用Spring注解,声明为Bean - @DependsOn("lifecycleBeanPostProcessor") // 依赖于生命周期Bean后处理器 - public DefaultAdvisorAutoProxyCreator defaultAdvisorAutoProxyCreator() { - DefaultAdvisorAutoProxyCreator defaultAdvisorAutoProxyCreator = new DefaultAdvisorAutoProxyCreator(); // 创建顾问自动代理创建器 - defaultAdvisorAutoProxyCreator.setProxyTargetClass(true); // 设置代理目标类 - return defaultAdvisorAutoProxyCreator; // 返回顾问自动代理创建器 - } - - /** - * 定义生命周期Bean后处理器 - * 方法用于定义Shiro的生命周期Bean后处理器,确保Shiro的组件能够按照预期的生命周期工作。 - * - * @return LifecycleBeanPostProcessor 生命周期Bean后处理器 - */ - @Bean // 使用Spring注解,声明为Bean - public static LifecycleBeanPostProcessor lifecycleBeanPostProcessor() { - return new LifecycleBeanPostProcessor(); // 返回生命周期Bean后处理器 - } - - /** - * 定义授权属性源顾问 - * 方法用于定义Shiro的授权属性源顾问,用于处理Shiro注解中的权限控制。 - * - * @param securityManager Shiro安全管理器 - * @return AuthorizationAttributeSourceAdvisor 授权属性源顾问 - */ - @Bean // 使用Spring注解,声明为Bean - public AuthorizationAttributeSourceAdvisor authorizationAttributeSourceAdvisor(DefaultWebSecurityManager securityManager) { - AuthorizationAttributeSourceAdvisor advisor = new AuthorizationAttributeSourceAdvisor(); // 创建授权属性源顾问 - advisor.setSecurityManager(securityManager); // 设置安全管理器 - return advisor; // 返回授权属性源顾问 - } -} \ No newline at end of file + /** + * Filter Chain定义说明 + * + * 1、一个URL可以配置多个Filter,使用逗号分隔 + * 2、当设置多个过滤器时,全部验证通过,才视为通过 + * 3、部分过滤器可指定参数,如perms,roles + */ + @Bean("shiroFilterFactoryBean") + public ShiroFilterFactoryBean shiroFilter(SecurityManager securityManager) { + ShiroFilterFactoryBean shiroFilterFactoryBean = new CNFilterFactoryBean(); + shiroFilterFactoryBean.setSecurityManager(securityManager); + // 拦截器 + Map map = new LinkedHashMap<>(); + + // 需要排除的一些接口 + map.put("/exam/api/sys/user/login", "anon"); + map.put("/exam/api/sys/user/reg", "anon"); + map.put("/exam/api/sys/user/quick-reg", "anon"); + + // 获取网站基本信息 + map.put("/exam/api/sys/config/detail", "anon"); + + // 文件读取 + map.put("/upload/file/**", "anon"); + + map.put("/", "anon"); + map.put("/v2/**", "anon"); + map.put("/doc.html", "anon"); + map.put("/**/*.js", "anon"); + map.put("/**/*.css", "anon"); + map.put("/**/*.html", "anon"); + map.put("/**/*.svg", "anon"); + map.put("/**/*.pdf", "anon"); + map.put("/**/*.jpg", "anon"); + map.put("/**/*.png", "anon"); + map.put("/**/*.ico", "anon"); + + // 字体 + map.put("/**/*.ttf", "anon"); + map.put("/**/*.woff", "anon"); + map.put("/**/*.woff2", "anon"); + map.put("/druid/**", "anon"); + map.put("/swagger-ui.html", "anon"); + map.put("/swagger**/**", "anon"); + map.put("/webjars/**", "anon"); + + // 添加自己的过滤器并且取名为jwt + Map filterMap = new HashMap(1); + filterMap.put("jwt", new JwtFilter()); + shiroFilterFactoryBean.setFilters(filterMap); + map.put("/**", "jwt"); + + shiroFilterFactoryBean.setFilterChainDefinitionMap(map); + return shiroFilterFactoryBean; + } + + @Bean("securityManager") + public DefaultWebSecurityManager securityManager(ShiroRealm myRealm) { + DefaultWebSecurityManager securityManager = new DefaultWebSecurityManager(); + securityManager.setRealm(myRealm); + DefaultSubjectDAO subjectDAO = new DefaultSubjectDAO(); + DefaultSessionStorageEvaluator defaultSessionStorageEvaluator = new DefaultSessionStorageEvaluator(); + defaultSessionStorageEvaluator.setSessionStorageEnabled(false); + subjectDAO.setSessionStorageEvaluator(defaultSessionStorageEvaluator); + securityManager.setSubjectDAO(subjectDAO); + return securityManager; + } + + /** + * 下面的代码是添加注解支持 + * @return + */ + @Bean + @DependsOn("lifecycleBeanPostProcessor") + public DefaultAdvisorAutoProxyCreator defaultAdvisorAutoProxyCreator() { + DefaultAdvisorAutoProxyCreator defaultAdvisorAutoProxyCreator = new DefaultAdvisorAutoProxyCreator(); + defaultAdvisorAutoProxyCreator.setProxyTargetClass(true); + defaultAdvisorAutoProxyCreator.setUsePrefix(true); + defaultAdvisorAutoProxyCreator.setAdvisorBeanNamePrefix("_no_advisor"); + return defaultAdvisorAutoProxyCreator; + } + + @Bean + public static LifecycleBeanPostProcessor lifecycleBeanPostProcessor() { + return new LifecycleBeanPostProcessor(); + } + + @Bean + public AuthorizationAttributeSourceAdvisor authorizationAttributeSourceAdvisor(DefaultWebSecurityManager securityManager) { + AuthorizationAttributeSourceAdvisor advisor = new AuthorizationAttributeSourceAdvisor(); + advisor.setSecurityManager(securityManager); + return advisor; + } + +} diff --git a/exam-api/src/main/java/com/yf/exam/config/SwaggerConfig.java b/exam-api/src/main/java/com/yf/exam/config/SwaggerConfig.java index 038caa6..d4208aa 100644 --- a/exam-api/src/main/java/com/yf/exam/config/SwaggerConfig.java +++ b/exam-api/src/main/java/com/yf/exam/config/SwaggerConfig.java @@ -1,164 +1,65 @@ -// 定义包路径,用于存放Swagger配置类相关的代码。这个包名表明该类属于特定的项目模块(com.yf.exam)下的config部分, -// 通常用于组织和管理与Swagger配置相关的代码。 package com.yf.exam.config; -// 导入用于启用Swagger Bootstrap UI的注解,Swagger Bootstrap UI是对Swagger UI的一种增强, -// 提供了更友好的界面展示和交互功能,通过该注解可以在项目中启用这一特性。 import com.github.xiaoymin.swaggerbootstrapui.annotations.EnableSwaggerBootstrapUI; - -// 导入Swagger用于标注API操作的注解,通过在方法上添加该注解,可以为该方法在Swagger文档中生成详细的操作描述信息, -// 包括方法的功能、参数、返回值等内容,方便开发者和使用者了解API的具体使用方式。 import io.swagger.annotations.ApiOperation; - -// 导入Spring框架中用于将类的属性与配置文件中的属性进行绑定的注解。 -// 通过指定prefix属性,可以将配置文件中以该前缀开头的属性值绑定到类的对应属性上, -// 在本类中用于绑定以"swagger"为前缀的配置属性。 import org.springframework.boot.context.properties.ConfigurationProperties; - -// 导入Spring框架中用于标记一个方法返回值为Spring Bean的注解。 -// 被该注解标记的方法,其返回值会被Spring容器管理,作为一个可被注入到其他组件中的Bean实例。 -// 在本类中用于将examApi、securityScheme等方法返回的对象注册为Spring Bean。 import org.springframework.context.annotation.Bean; - -// 导入Spring框架中用于标记一个类是配置类的注解。 -// 被该注解标记的类可以在其中定义各种Bean配置方法,这些方法会被Spring容器在启动时自动识别并执行, -// 用于创建和配置应用程序所需的各种组件。在本类中用于标记该类为Spring配置类,以便进行Swagger相关的配置。 import org.springframework.context.annotation.Configuration; - -// 导入Swagger用于构建API信息的构建器类,通过该构建器可以方便地设置API的标题、描述、联系人、版本等信息, -// 在本类的apiInfo方法中用于创建并返回包含详细API信息的ApiInfo对象。 import springfox.documentation.builders.ApiInfoBuilder; - -// 导入Swagger用于选择路径的选择器类,通过该选择器可以指定哪些路径下的API需要被Swagger生成文档并展示, -// 在本类的examApi方法中用于选择符合特定路径模式的API。 import springfox.documentation.builders.PathSelectors; - -// 导入Swagger用于选择请求处理器(即包含API方法的类或接口)的选择器类, -// 通过该选择器可以指定哪些请求处理器中的方法需要被Swagger生成文档并展示, -// 在本类的examApi方法中用于选择带有ApiOperation注解的方法所在的请求处理器。 import springfox.documentation.builders.RequestHandlerSelectors; - -// 导入Swagger用于表示API信息的类,该类包含了API的标题、描述、联系人、版本等详细信息, -// 在本类的examApi方法中通过调用apiInfo方法获取该对象并设置到Docket中,以便在Swagger文档中展示这些信息。 import springfox.documentation.service.ApiInfo; - -// 导入Swagger用于表示API密钥的类,用于设置API的授权相关信息,如授权的键名、值的位置(如在请求头中)等, -// 在本类的securityScheme方法中用于创建并返回一个ApiKey对象,用于设置API的授权方案。 import springfox.documentation.service.ApiKey; - -// 导入Swagger用于表示联系人信息的类,通过该类可以设置API的联系人姓名、联系方式、网址等信息, -// 在本类的apiInfo方法中用于创建并返回一个包含联系人信息的Contact对象,并设置到ApiInfo中。 import springfox.documentation.service.Contact; - -// 导入Swagger用于表示安全方案的类,它是一个通用的接口,用于定义不同类型的安全方案, -// 在本类的examApi方法中通过调用securityScheme方法获取具体的安全方案实现(如ApiKey)并设置到Docket中。 import springfox.documentation.service.SecurityScheme; - -// 导入Swagger用于表示文档类型的枚举类,目前主要有SWAGGER_2等类型, -// 在本类的examApi方法中用于指定创建Docket对象时所采用的文档类型为SWAGagger_2。 import springfox.documentation.spi.DocumentationType; - -// 导入Swagger用于生成Swagger文档的核心类,通过该类可以配置各种Swagger相关的设置,如API信息、路径选择、 -// 授权方案等,在本类的examApi方法中用于创建并配置Docket对象,以生成符合项目需求的Swagger文档。 import springfox.documentation.spring.web.plugins.Docket; - -// 导入用于启用Swagger 2的注解,通过在类上添加该注解,可以在项目中启用Swagger 2的功能, -// 使得Swagger能够为项目中的API生成详细的文档并提供交互界面,方便开发者和使用者查看和测试API。 import springfox.documentation.swagger2.annotations.EnableSwagger2; -// 导入Java标准库中的集合类,用于处理集合相关的操作,在本类的examApi方法中用于创建一个包含单个安全方案的列表, -// 以便将安全方案设置到Docket对象中。 import java.util.Collections; /** - * Swagger配置类,主要功能是配置Swagger在项目中的相关设置, - * 包括启用Swagger 2和Swagger Bootstrap UI功能,绑定以"swagger"为前缀的配置属性, - * 创建Docket对象并设置其API信息、分组名称、选择需要生成文档的API方法和路径、设置安全方案等, - * 以生成详细的API文档并提供友好的交互界面,方便对项目中的API进行查看、测试和使用。 + * Swagger配置 * @author bool * @date 2020/8/19 20:53 */ -@Configuration // 使用该注解标记此为Spring配置类,表明这个类是用来进行Spring应用程序的配置工作的。 -@EnableSwagger2 // 使用该注解启用Swagger 2功能,使得Swagger能够为项目中的API生成详细的文档并提供交互界面。 -@EnableSwaggerBootstrapUI // 使用该注解启用Swagger Bootstrap UI功能,提供更友好的界面展示和交互功能。 -@ConfigurationProperties(prefix = "swagger") // 使用该注解将类的属性与以"swagger"为前缀的配置文件中的属性进行绑定, - // 以便在类中可以方便地使用这些配置属性来定制Swagger的设置。 - +@Configuration +@EnableSwagger2 +@EnableSwaggerBootstrapUI +@ConfigurationProperties(prefix = "swagger") public class SwaggerConfig { - /** - * 定义一个方法,并使用@Bean注解将其返回值声明为Spring Bean。 - * 该方法用于创建并返回一个Docket对象,该对象是Swagger生成文档的核心组件, - * 通过对其进行一系列设置,可以定制生成的API文档的内容和展示方式。 - * - * @return 返回一个Docket对象,该对象经过了相关设置,包括API信息、分组名称、选择的API方法和路径、安全方案等。 - */ - @Bean // 将该方法返回的Docket对象声明为Spring Bean,以便Spring容器能够管理和注入到其他需要使用的地方。 - public Docket examApi() { - return new Docket(DocumentationType.SWAGGER_2) // 创建一个新的Docket对象,并指定文档类型为SWAGGER_2, - // 这是目前较为常用的Swagger文档类型,用于生成详细的API文档。 - - .apiInfo(apiInfo()) // 调用apiInfo方法获取包含详细API信息的ApiInfo对象,并设置到Docket对象中, - // 以便在生成的Swagger文档中展示API的标题、描述、联系人、版本等信息。 - - .groupName("考试模块接口") // 设置Docket对象的分组名称为"考试模块接口", - // 这样可以将项目中的API按照不同的模块或功能进行分组展示,方便查看和管理。 - - .select() // 开始选择需要生成文档的API,通过一系列选择器来指定具体的选择条件。 - - .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) // 使用RequestHandlerSelectors的withMethodAnnotation方法选择带有ApiOperation注解的方法, - // 即只选择那些在方法上标注了ApiOperation注解的API方法进行文档生成, - // 这样可以确保只生成我们希望展示的重要API的文档。 - .paths(PathSelectors.ant("/exam/api/**")) // 使用PathSelectors的ant方法选择符合特定路径模式的API, - // 这里选择的路径模式是"/exam/api/**",表示只选择以"/exam/api/"开头的任意路径下的API进行文档生成, - // 进一步限定了生成文档的API范围,使其更加聚焦于项目中的特定部分(如考试模块相关的API)。 - - .build() // 完成上述选择条件的设置后,调用build方法构建Docket对象,使其生效并包含我们所设置的所有选择条件和信息。 - - .securitySchemes(Collections.singletonList(securityScheme())) // 创建一个包含单个安全方案的列表, - // 通过调用securityScheme方法获取具体的安全方案对象(如ApiKey), - // 并将其添加到列表中,然后设置到Docket对象中, - // 以便在Swagger文档中展示API的授权相关信息,如需要在请求头中传递的授权密钥等。 - - ; + @Bean + public Docket examApi() { + return new Docket(DocumentationType.SWAGGER_2) + .apiInfo(apiInfo()) + .groupName("考试模块接口") + .select() + .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) + .paths(PathSelectors.ant("/exam/api/**")) + .build() + .securitySchemes(Collections.singletonList(securityScheme())); } - /** - * 用于创建并返回一个包含详细API信息的ApiInfo对象的方法。 - * 通过ApiInfoBuilder类可以方便地设置API的标题、描述、联系人、版本等信息。 - * - * @return 返回一个ApiInfo对象,该对象包含了API的标题、描述、联系人、版本等详细信息, - * 用于设置到Docket对象中,以便在Swagger文档中展示。 - */ - private ApiInfo apiInfo() { - return new ApiInfoBuilder().title("考试系统接口") // 使用ApiInfoBuilder的title方法设置API的标题为"考试系统接口", - // 这将在Swagger文档的顶部显著位置展示,让使用者快速了解该API所属的系统。 - - .description("考试系统接口") // 使用ApiInfoBuilder的description方法设置API的描述为"考试系统接口", - // 可以在这里详细描述API的功能、用途、特点等信息,方便使用者进一步了解API的具体情况。 - .contact(new Contact("Van", "https://exam.yfhl.net", "18365918@qq.com")) // 使用ApiInfoBuilder的contact方法创建一个包含联系人信息的Contact对象, - // 并设置联系人姓名为"Van",网址为"https://exam.yfhl.net",邮箱为"18365918@qq.com", - // 这些信息将在Swagger文档中展示,方便使用者在有问题时能够联系到相关人员。 - .version("1.0.0") // 使用ApiInfoBuilder的version方法设置API的版本号为"1.0.0", - // 让使用者了解该API的版本情况,以便在不同版本之间进行对比和选择。 - - .build(); // 完成上述各项信息的设置后,调用build方法构建ApiInfo对象,使其生效并包含我们所设置的所有信息。 + private ApiInfo apiInfo() { + return new ApiInfoBuilder().title("考试系统接口") + .description("考试系统接口") + .contact(new Contact("Van", "https://exam.yfhl.net", "18365918@qq.com")) + .version("1.0.0") + .build(); } + /** - * 用于创建并返回一个表示API密钥的ApiKey对象的方法,该对象用于设置API的授权方案。 - * - * @return 返回一个ApiKey对象,该对象定义了API的授权相关信息,如授权的键名、值的位置(如在请求头中)等, - * 用于设置到Docket对象中,以便在Swagger文档中展示API的授权要求。 + * 授权头部 + * @return */ - @Bean // 将该方法返回的SecurityScheme对象(实际为ApiKey类型)声明为Spring Bean,以便Spring容器能够管理和注入到其他需要使用的地方。 + @Bean SecurityScheme securityScheme() { - return new ApiKey("token", "token", "header"); // 创建一个新的ApiKey对象, - // 第一个参数"token"表示授权的键名,即客户端在请求时需要在指定位置(这里是请求头)传递的键名; - // 第二个参数"token"表示授权的值,这里简单设置为与键名相同,实际应用中可能是根据用户登录等情况生成的授权令牌; - // 第三个参数"header"表示授权的值应该放置的位置,这里指定为在请求头中传递。 + return new ApiKey("token", "token", "header"); } -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/controller/ExamController.java b/exam-api/src/main/java/com/yf/exam/modules/exam/controller/ExamController.java index 6adeb13..e5583f2 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/controller/ExamController.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/controller/ExamController.java @@ -1,144 +1,151 @@ -package com.yf.exam.modules.exam.controller; // 定义包名,控制器所在的包路径 - -import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; // 导入MyBatis Plus的查询包装类 -import com.baomidou.mybatisplus.core.metadata.IPage; // 导入MyBatis Plus的分页接口 -import com.yf.exam.core.api.ApiRest; // 导入自定义的API响应类 -import com.yf.exam.core.api.controller.BaseController; // 导入基控制器类 -import com.yf.exam.core.api.dto.BaseIdReqDTO; // 导入基础ID请求数据传输对象 -import com.yf.exam.core.api.dto.BaseIdsReqDTO; // 导入基础IDs请求数据传输对象 -import com.yf.exam.core.api.dto.BaseStateReqDTO; // 导入基础状态请求数据传输对象 -import com.yf.exam.core.api.dto.PagingReqDTO; // 导入分页请求数据传输对象 -import com.yf.exam.modules.exam.dto.ExamDTO; // 导入考试DTO -import com.yf.exam.modules.exam.dto.request.ExamSaveReqDTO; // 导入考试保存请求DTO -import com.yf.exam.modules.exam.dto.response.ExamOnlineRespDTO; // 导入在线考试响应DTO -import com.yf.exam.modules.exam.dto.response.ExamReviewRespDTO; // 导入考试审核响应DTO -import com.yf.exam.modules.exam.entity.Exam; // 导入考试实体类 -import com.yf.exam.modules.exam.service.ExamService; // 导入考试服务接口 -import io.swagger.annotations.Api; // 导入Swagger注解 -import io.swagger.annotations.ApiOperation; // 导入Swagger操作注解 -import org.apache.shiro.authz.annotation.RequiresRoles; // 导入Shiro权限注解 -import org.springframework.beans.factory.annotation.Autowired; // 导入Spring的自动注入注解 -import org.springframework.web.bind.annotation.RequestBody; // 导入Spring MVC的请求体注解 -import org.springframework.web.bind.annotation.RequestMapping; // 导入Spring MVC的请求映射注解 -import org.springframework.web.bind.annotation.RequestMethod; // 导入Spring MVC的请求方法注解 -import org.springframework.web.bind.annotation.RestController; // 导入Spring MVC的控制器注解 - -import java.util.Date; // 导入Java的日期类 +package com.yf.exam.modules.exam.controller; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.yf.exam.core.api.ApiRest; +import com.yf.exam.core.api.controller.BaseController; +import com.yf.exam.core.api.dto.BaseIdReqDTO; +import com.yf.exam.core.api.dto.BaseIdsReqDTO; +import com.yf.exam.core.api.dto.BaseStateReqDTO; +import com.yf.exam.core.api.dto.PagingReqDTO; +import com.yf.exam.modules.exam.dto.ExamDTO; +import com.yf.exam.modules.exam.dto.request.ExamSaveReqDTO; +import com.yf.exam.modules.exam.dto.response.ExamOnlineRespDTO; +import com.yf.exam.modules.exam.dto.response.ExamReviewRespDTO; +import com.yf.exam.modules.exam.entity.Exam; +import com.yf.exam.modules.exam.service.ExamService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.apache.shiro.authz.annotation.RequiresRoles; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Date; /** - *

- * 考试控制器,处理与考试相关的请求 - *

- * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -@Api(tags={"考试"}) // Swagger注解,定义API的标签 -@RestController // Spring MVC注解,声明这是一个REST控制器 -@RequestMapping("/exam/api/exam/exam") // Spring MVC注解,定义请求的基础路径 -public class ExamController extends BaseController { // 声明控制器类,继承自基控制器 +*

+* 考试控制器 +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +@Api(tags={"考试"}) +@RestController +@RequestMapping("/exam/api/exam/exam") +public class ExamController extends BaseController { @Autowired - private ExamService baseService; // 自动注入考试服务 + private ExamService baseService; /** - * 添加或修改考试信息 - * @param reqDTO 考试保存请求数据传输对象 - * @return ApiRest 返回操作结果 - */ - @RequiresRoles("sa") // Shiro权限注解,要求角色为"sa"(超级管理员) - @ApiOperation(value = "添加或修改") // Swagger注解,定义操作的描述 - @RequestMapping(value = "/save", method = { RequestMethod.POST}) // Spring MVC注解,定义请求的映射和方法 - public ApiRest save(@RequestBody ExamSaveReqDTO reqDTO) { // 定义添加或修改考试的方法 - // 复制参数并保存 - baseService.save(reqDTO); // 调用服务层保存考试信息 - return super.success(); // 返回成功响应 + * 添加或修改 + * @param reqDTO + * @return + */ + @RequiresRoles("sa") + @ApiOperation(value = "添加或修改") + @RequestMapping(value = "/save", method = { RequestMethod.POST}) + public ApiRest save(@RequestBody ExamSaveReqDTO reqDTO) { + //复制参数 + baseService.save(reqDTO); + return super.success(); } /** - * 批量删除考试 - * @param reqDTO 包含要删除的考试ID列表 - * @return ApiRest 返回操作结果 - */ - @RequiresRoles("sa") // Shiro权限注解,要求角色为"sa"(超级管理员) - @ApiOperation(value = "批量删除") // Swagger注解,定义操作的描述 - @RequestMapping(value = "/delete", method = { RequestMethod.POST}) // Spring MVC注解,定义请求的映射和方法 - public ApiRest edit(@RequestBody BaseIdsReqDTO reqDTO) { // 定义批量删除考试的方法 - // 根据ID删除考试 - baseService.removeByIds(reqDTO.getIds()); // 调用服务层根据ID列表删除考试 - return super.success(); // 返回成功响应 + * 批量删除 + * @param reqDTO + * @return + */ + @RequiresRoles("sa") + @ApiOperation(value = "批量删除") + @RequestMapping(value = "/delete", method = { RequestMethod.POST}) + public ApiRest edit(@RequestBody BaseIdsReqDTO reqDTO) { + //根据ID删除 + baseService.removeByIds(reqDTO.getIds()); + return super.success(); } /** - * 查找考试详情 - * @param reqDTO 包含考试ID - * @return ApiRest 返回考试详情 - */ - @ApiOperation(value = "查找详情") // Swagger注解,定义操作的描述 - @RequestMapping(value = "/detail", method = { RequestMethod.POST}) // Spring MVC注解,定义请求的映射和方法 - public ApiRest find(@RequestBody BaseIdReqDTO reqDTO) { // 定义查找考试详情的方法 - ExamSaveReqDTO dto = baseService.findDetail(reqDTO.getId()); // 调用服务层查找考试详情 - return super.success(dto); // 返回成功响应和考试详情 + * 查找详情 + * @param reqDTO + * @return + */ + @ApiOperation(value = "查找详情") + @RequestMapping(value = "/detail", method = { RequestMethod.POST}) + public ApiRest find(@RequestBody BaseIdReqDTO reqDTO) { + ExamSaveReqDTO dto = baseService.findDetail(reqDTO.getId()); + return super.success(dto); } /** - * 更新考试状态 - * @param reqDTO 包含考试ID和新状态 - * @return ApiRest 返回操作结果 + * 查找详情 + * @param reqDTO + * @return */ - @RequiresRoles("sa") // Shiro权限注解,要求角色为"sa"(超级管理员) - @ApiOperation(value = "更新考试状态") // Swagger注解,定义操作的描述 - @RequestMapping(value = "/state", method = { RequestMethod.POST}) // Spring MVC注解,定义请求的映射和方法 - public ApiRest state(@RequestBody BaseStateReqDTO reqDTO) { // 定义更新考试状态的方法 - // 创建查询条件 + @RequiresRoles("sa") + @ApiOperation(value = "查找详情") + @RequestMapping(value = "/state", method = { RequestMethod.POST}) + public ApiRest state(@RequestBody BaseStateReqDTO reqDTO) { + QueryWrapper wrapper = new QueryWrapper<>(); - wrapper.lambda().in(Exam::getId, reqDTO.getIds()); // 构造查询条件,查询指定ID的考试 - Exam exam = new Exam(); // 创建考试实体 - exam.setState(reqDTO.getState()); // 设置新状态 - exam.setUpdateTime(new Date()); // 设置更新时间为当前时间 + wrapper.lambda().in(Exam::getId, reqDTO.getIds()); + Exam exam = new Exam(); + exam.setState(reqDTO.getState()); + exam.setUpdateTime(new Date()); - baseService.update(exam, wrapper); // 调用服务层更新考试状态 - return super.success(); // 返回成功响应 + baseService.update(exam, wrapper); + return super.success(); } + /** - * 分页查找考试 - * @param reqDTO 分页请求数据传输对象 - * @return ApiRest> 返回分页考试列表 + * 分页查找 + * @param reqDTO + * @return */ - @ApiOperation(value = "考试视角") // Swagger注解,定义操作的描述 - @RequestMapping(value = "/online-paging", method = { RequestMethod.POST}) // Spring MVC注解,定义请求的映射和方法 - public ApiRest> myPaging(@RequestBody PagingReqDTO reqDTO) { // 定义分页查找考试的方法 - // 分页查询并转换 - IPage page = baseService.onlinePaging(reqDTO); // 调用服务层进行分页查询 - return super.success(page); // 返回成功响应和分页结果 + @ApiOperation(value = "考试视角") + @RequestMapping(value = "/online-paging", method = { RequestMethod.POST}) + public ApiRest> myPaging(@RequestBody PagingReqDTO reqDTO) { + + //分页查询并转换 + IPage page = baseService.onlinePaging(reqDTO); + return super.success(page); } /** - * 分页查找考试 - * @param reqDTO 分页请求数据传输对象 - * @return ApiRest> 返回分页考试列表 - */ - @RequiresRoles("sa") // Shiro权限注解,要求角色为"sa"(超级管理员) - @ApiOperation(value = "分页查找") // Swagger注解,定义操作的描述 - @RequestMapping(value = "/paging", method = { RequestMethod.POST}) // Spring MVC注解,定义请求的映射和方法 - public ApiRest> paging(@RequestBody PagingReqDTO reqDTO) { // 定义分页查找考试的方法 - // 分页查询并转换 - IPage page = baseService.paging(reqDTO); // 调用服务层进行分页查询 - return super.success(page); // 返回成功响应和分页结果 + * 分页查找 + * @param reqDTO + * @return + */ + @RequiresRoles("sa") + @ApiOperation(value = "分页查找") + @RequestMapping(value = "/paging", method = { RequestMethod.POST}) + public ApiRest> paging(@RequestBody PagingReqDTO reqDTO) { + + //分页查询并转换 + IPage page = baseService.paging(reqDTO); + + return super.success(page); } + /** - * 分页查找待阅试卷 - * @param reqDTO 分页请求数据传输对象 - * @return ApiRest> 返回分页待阅试卷列表 + * 分页查找 + * @param reqDTO + * @return */ - @RequiresRoles("sa") // Shiro权限注解,要求角色为"sa"(超级管理员) - @ApiOperation(value = "待阅试卷") // Swagger注解,定义操作的描述 - @RequestMapping(value = "/review-paging", method = { RequestMethod.POST}) // Spring MVC注解,定义请求的映射和方法 - public ApiRest> reviewPaging(@RequestBody PagingReqDTO reqDTO) { // 定义分页查找待阅试卷的方法 - // 分页查询并转换 - IPage page = baseService.reviewPaging(reqDTO); // 调用服务层进行分页查询 - return super.success(page); // 返回成功响应和分页结果 + @RequiresRoles("sa") + @ApiOperation(value = "待阅试卷") + @RequestMapping(value = "/review-paging", method = { RequestMethod.POST}) + public ApiRest> reviewPaging(@RequestBody PagingReqDTO reqDTO) { + //分页查询并转换 + IPage page = baseService.reviewPaging(reqDTO); + return super.success(page); } + + } diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamDTO.java b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamDTO.java index 8f9b69e..90f86f1 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamDTO.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamDTO.java @@ -1,93 +1,101 @@ -package com.yf.exam.modules.exam.dto; // 定义包名,DTO类所在的包路径 +package com.yf.exam.modules.exam.dto; -import com.fasterxml.jackson.annotation.JsonFormat; // 导入Jackson库的注解,用于格式化日期 -import com.yf.exam.modules.paper.enums.ExamState; // 导入考试状态枚举 -import io.swagger.annotations.ApiModel; // 导入Swagger注解,用于描述模型 -import io.swagger.annotations.ApiModelProperty; // 导入Swagger注解,用于描述模型属性 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 -import org.springframework.format.annotation.DateTimeFormat; // 导入Spring的日期格式化注解 +import com.fasterxml.jackson.annotation.JsonFormat; +import com.yf.exam.modules.paper.enums.ExamState; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import org.springframework.format.annotation.DateTimeFormat; -import java.io.Serializable; // 导入Java的序列化接口,用于确保对象可以被序列化 -import java.util.Date; // 导入Java的日期类 +import java.io.Serializable; +import java.util.Date; /** - *

- * 考试数据传输类,封装考试的基本信息 - *

- * 此类用于封装考试的基本信息,以便在应用程序中传输。 - * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@ApiModel(value="考试", description="考试") // Swagger注解,描述这个类的用途 -public class ExamDTO implements Serializable { // 声明类,实现Serializable接口以确保可以序列化 +*

+* 考试数据传输类 +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +@Data +@ApiModel(value="考试", description="考试") +public class ExamDTO implements Serializable { - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制,确保类的版本唯一性 - @ApiModelProperty(value = "ID", required=true) // Swagger注解,描述字段的用途和是否必填 - private String id; // 考试ID + private static final long serialVersionUID = 1L; - @ApiModelProperty(value = "考试名称", required=true) // Swagger注解,描述字段的用途和是否必填 - private String title; // 考试名称 - @ApiModelProperty(value = "考试描述", required=true) // Swagger注解,描述字段的用途和是否必填 - private String content; // 考试描述 + @ApiModelProperty(value = "ID", required=true) + private String id; - @ApiModelProperty(value = "1公开2部门3定员", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer openType; // 开放类型,1表示公开,2表示部门,3表示定员 + @ApiModelProperty(value = "考试名称", required=true) + private String title; - @ApiModelProperty(value = "考试状态", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer state; // 考试状态 + @ApiModelProperty(value = "考试描述", required=true) + private String content; - @ApiModelProperty(value = "是否限时", required=true) // Swagger注解,描述字段的用途和是否必填 - private Boolean timeLimit; // 是否限时 + @ApiModelProperty(value = "1公开2部门3定员", required=true) + private Integer openType; - @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") // Jackson注解,格式化日期 - @DateTimeFormat(pattern = "yyyy-MM-dd") // Spring注解,格式化日期 - @ApiModelProperty(value = "开始时间", required=true) // Swagger注解,描述字段的用途和是否必填 - private Date startTime; // 考试开始时间 + @ApiModelProperty(value = "考试状态", required=true) + private Integer state; - @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") // Jackson注解,格式化日期 - @DateTimeFormat(pattern = "yyyy-MM-dd") // Spring注解,格式化日期 - @ApiModelProperty(value = "结束时间", required=true) // Swagger注解,描述字段的用途和是否必填 - private Date endTime; // 考试结束时间 + @ApiModelProperty(value = "是否限时", required=true) + private Boolean timeLimit; - @ApiModelProperty(value = "创建时间", required=true) // Swagger注解,描述字段的用途和是否必填 - private Date createTime; // 创建时间 + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern = "yyyy-MM-dd") + @ApiModelProperty(value = "开始时间", required=true) + private Date startTime; - @ApiModelProperty(value = "更新时间", required=true) // Swagger注解,描述字段的用途和是否必填 - private Date updateTime; // 更新时间 + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern = "yyyy-MM-dd") + @ApiModelProperty(value = "结束时间", required=true) + private Date endTime; + + @ApiModelProperty(value = "创建时间", required=true) + private Date createTime; + + @ApiModelProperty(value = "更新时间", required=true) + private Date updateTime; + + @ApiModelProperty(value = "总分数", required=true) + private Integer totalScore; + + @ApiModelProperty(value = "总时长(分钟)", required=true) + private Integer totalTime; + + @ApiModelProperty(value = "及格分数", required=true) + private Integer qualifyScore; - @ApiModelProperty(value = "总分数", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer totalScore; // 总分数 - @ApiModelProperty(value = "总时长(分钟)", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer totalTime; // 总时长(分钟) - @ApiModelProperty(value = "及格分数", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer qualifyScore; // 及格分数 /** - * 判断考试状态 - * 根据当前时间和考试的限时设置,返回考试的实际状态。 - * - * @return 当前考试状态 + * 是否结束 + * @return */ - public Integer getState() { - if (this.timeLimit != null && this.timeLimit) { - if (System.currentTimeMillis() < startTime.getTime()) { - return ExamState.READY_START; // 如果当前时间小于开始时间,状态为准备开始 + public Integer getState(){ + + if(this.timeLimit!=null && this.timeLimit){ + + if(System.currentTimeMillis() < startTime.getTime() ){ + return ExamState.READY_START; } - if (System.currentTimeMillis() > endTime.getTime()) { - return ExamState.OVERDUE; // 如果当前时间大于结束时间,状态为已过期 + + if(System.currentTimeMillis() > endTime.getTime()){ + return ExamState.OVERDUE; } - if (System.currentTimeMillis() > startTime.getTime() + + if(System.currentTimeMillis() > startTime.getTime() && System.currentTimeMillis() < endTime.getTime() - && !ExamState.DISABLED.equals(this.state)) { - return ExamState.ENABLE; // 如果当前时间在开始时间和结束时间之间,并且状态不是禁用,状态为正在进行 + && !ExamState.DISABLED.equals(this.state)){ + return ExamState.ENABLE; } + } - return this.state; // 如果不满足上述条件,返回当前状态 + + return this.state; } -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamDepartDTO.java b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamDepartDTO.java index 7710955..d0e54b7 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamDepartDTO.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamDepartDTO.java @@ -1,32 +1,33 @@ -package com.yf.exam.modules.exam.dto; // 定义包名,DTO类所在的包路径 +package com.yf.exam.modules.exam.dto; -import io.swagger.annotations.ApiModel; // 导入Swagger注解,用于描述模型 -import io.swagger.annotations.ApiModelProperty; // 导入Swagger注解,用于描述模型属性 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; -import java.io.Serializable; // 导入Java的序列化接口,用于确保对象可以被序列化 +import java.io.Serializable; /** - *

- * 考试部门数据传输类,封装考试部门相关信息 - *

- * 此类用于封装与考试部门相关的数据,以便在应用程序中传输。 - * - * @author 聪明笨狗 - * @since 2020-09-03 17:24 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@ApiModel(value="考试部门", description="考试部门") // Swagger注解,描述这个类的用途 -public class ExamDepartDTO implements Serializable { // 声明类,实现Serializable接口以确保可以序列化 +*

+* 考试部门数据传输类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-03 17:24 +*/ +@Data +@ApiModel(value="考试部门", description="考试部门") +public class ExamDepartDTO implements Serializable { - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制,确保类的版本唯一性 - - @ApiModelProperty(value = "ID", required=true) // Swagger注解,描述字段的用途和是否必填 - private String id; // 唯一标识符,标识考试部门记录的ID - - @ApiModelProperty(value = "考试ID", required=true) // Swagger注解,描述字段的用途和是否必填 - private String examId; // 考试的唯一标识符,关联到具体的考试 - - @ApiModelProperty(value = "部门ID", required=true) // Swagger注解,描述字段的用途和是否必填 - private String departId; // 部门的唯一标识符,关联到具体的部门 -} \ No newline at end of file + private static final long serialVersionUID = 1L; + + + @ApiModelProperty(value = "ID", required=true) + private String id; + + @ApiModelProperty(value = "考试ID", required=true) + private String examId; + + @ApiModelProperty(value = "部门ID", required=true) + private String departId; + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamRepoDTO.java b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamRepoDTO.java index 5cbc8a4..7244e9a 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamRepoDTO.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ExamRepoDTO.java @@ -1,50 +1,51 @@ -package com.yf.exam.modules.exam.dto; // 定义包名,DTO类所在的包路径 +package com.yf.exam.modules.exam.dto; -import io.swagger.annotations.ApiModel; // 导入Swagger注解,用于描述模型 -import io.swagger.annotations.ApiModelProperty; // 导入Swagger注解,用于描述模型属性 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; -import java.io.Serializable; // 导入Java的序列化接口,用于确保对象可以被序列化 +import java.io.Serializable; /** - *

- * 考试题库数据传输类,封装考试题库相关信息 - *

- * 此类用于封装考试题库的数据,以便在应用程序中传输。 - * - * @author 聪明笨狗 - * @since 2020-09-05 11:14 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@ApiModel(value="考试题库", description="考试题库") // Swagger注解,描述这个类的用途 -public class ExamRepoDTO implements Serializable { // 声明类,实现Serializable接口以确保可以序列化 - - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制,确保类的版本唯一性 - - @ApiModelProperty(value = "ID", required=true) // Swagger注解,描述字段的用途和是否必填 - private String id; // 题库ID,唯一标识符 - - @ApiModelProperty(value = "考试ID", required=true) // Swagger注解,描述字段的用途和是否必填 - private String examId; // 关联的考试ID,标识与哪个考试相关联 - - @ApiModelProperty(value = "题库ID", required=true) // Swagger注解,描述字段的用途和是否必填 - private String repoId; // 题库ID,标识具体的题库 - - @ApiModelProperty(value = "单选题数量", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer radioCount; // 单选题数量,表示题库中单选题的总数 - - @ApiModelProperty(value = "单选题分数", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer radioScore; // 单选题分数,表示单选题的总分 - - @ApiModelProperty(value = "多选题数量", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer multiCount; // 多选题数量,表示题库中多选题的总数 - - @ApiModelProperty(value = "多选题分数", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer multiScore; // 多选题分数,表示多选题的总分 - - @ApiModelProperty(value = "判断题数量", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer judgeCount; // 判断题数量,表示题库中判断题的总数 - - @ApiModelProperty(value = "判断题分数", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer judgeScore; // 判断题分数,表示判断题的总分 -} \ No newline at end of file +*

+* 考试题库数据传输类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-05 11:14 +*/ +@Data +@ApiModel(value="考试题库", description="考试题库") +public class ExamRepoDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + + @ApiModelProperty(value = "ID", required=true) + private String id; + + @ApiModelProperty(value = "考试ID", required=true) + private String examId; + + @ApiModelProperty(value = "题库ID", required=true) + private String repoId; + + @ApiModelProperty(value = "单选题数量", required=true) + private Integer radioCount; + + @ApiModelProperty(value = "单选题分数", required=true) + private Integer radioScore; + + @ApiModelProperty(value = "多选题数量", required=true) + private Integer multiCount; + + @ApiModelProperty(value = "多选题分数", required=true) + private Integer multiScore; + + @ApiModelProperty(value = "判断题数量", required=true) + private Integer judgeCount; + + @ApiModelProperty(value = "判断题分数", required=true) + private Integer judgeScore; + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO.java b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO.java index e1887c3..a566fec 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO.java @@ -1,30 +1,32 @@ -package com.yf.exam.modules.exam.dto.ext; // 定义包名,DTO扩展类所在的包路径 +package com.yf.exam.modules.exam.dto.ext; -import com.yf.exam.modules.exam.dto.ExamRepoDTO; // 导入考试题库数据传输类 -import io.swagger.annotations.ApiModel; // 导入Swagger注解,用于描述模型 -import io.swagger.annotations.ApiModelProperty; // 导入Swagger注解,用于描述模型属性 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 +import com.yf.exam.modules.exam.dto.ExamRepoDTO; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; /** - *

- * 考试题库数据传输类的扩展,包含额外的题库信息 - *

- * - * @author 聪明笨狗 - * @since 2020-09-05 11:14 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@ApiModel(value="考试题库扩展响应类", description="考试题库扩展响应类") // Swagger注解,描述这个类的用途 -public class ExamRepoExtDTO extends ExamRepoDTO { // 声明类,继承自ExamRepoDTO +*

+* 考试题库数据传输类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-05 11:14 +*/ +@Data +@ApiModel(value="考试题库扩展响应类", description="考试题库扩展响应类") +public class ExamRepoExtDTO extends ExamRepoDTO { - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制 + private static final long serialVersionUID = 1L; - @ApiModelProperty(value = "单选题总量", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer totalRadio; // 单选题总量 - - @ApiModelProperty(value = "多选题总量", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer totalMulti; // 多选题总量 - - @ApiModelProperty(value = "判断题总量", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer totalJudge; // 判断题总量 + + @ApiModelProperty(value = "单选题总量", required=true) + private Integer totalRadio; + + @ApiModelProperty(value = "多选题总量", required=true) + private Integer totalMulti; + + @ApiModelProperty(value = "判断题总量", required=true) + private Integer totalJudge; + } diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/request/ExamSaveReqDTO.java b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/request/ExamSaveReqDTO.java index aa62266..5c1a95b 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/request/ExamSaveReqDTO.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/request/ExamSaveReqDTO.java @@ -1,30 +1,32 @@ -package com.yf.exam.modules.exam.dto.request; // 定义包名,请求DTO类所在的包路径 +package com.yf.exam.modules.exam.dto.request; -import com.yf.exam.modules.exam.dto.ExamDTO; // 导入基础考试DTO类 -import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; // 导入考试题库扩展DTO类 -import io.swagger.annotations.ApiModel; // 导入Swagger注解,用于描述模型 -import io.swagger.annotations.ApiModelProperty; // 导入Swagger注解,用于描述模型属性 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 +import com.yf.exam.modules.exam.dto.ExamDTO; +import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; -import java.util.List; // 导入Java的List接口,用于定义列表类型的属性 +import java.util.List; /** - *

- * 考试保存请求类,封装考试保存请求的相关信息 - *

- * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@ApiModel(value="考试保存请求类", description="考试保存请求类") // Swagger注解,描述这个类的用途 -public class ExamSaveReqDTO extends ExamDTO { // 声明类,继承自ExamDTO - - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制 - - @ApiModelProperty(value = "题库列表", required=true) // Swagger注解,描述字段的用途和是否必填 - private List repoList; // 题库列表,存储与考试相关的题库信息 - - @ApiModelProperty(value = "考试部门列表", required=true) // Swagger注解,描述字段的用途和是否必填 - private List departIds; // 考试部门ID列表,存储与考试相关的部门ID -} \ No newline at end of file +*

+* 考试保存请求类 +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +@Data +@ApiModel(value="考试保存请求类", description="考试保存请求类") +public class ExamSaveReqDTO extends ExamDTO { + + private static final long serialVersionUID = 1L; + + + @ApiModelProperty(value = "题库列表", required=true) + private List repoList; + + @ApiModelProperty(value = "考试部门列表", required=true) + private List departIds; + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO.java b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO.java index ec344db..edbc5ce 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/response/ExamOnlineRespDTO.java @@ -1,21 +1,22 @@ -package com.yf.exam.modules.exam.dto.response; // 定义包名,响应DTO类所在的包路径 +package com.yf.exam.modules.exam.dto.response; -import com.yf.exam.modules.exam.dto.ExamDTO; // 导入基础考试DTO类 -import io.swagger.annotations.ApiModel; // 导入Swagger注解,用于描述模型 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 +import com.yf.exam.modules.exam.dto.ExamDTO; +import io.swagger.annotations.ApiModel; +import lombok.Data; /** - *

- * 在线考试分页响应类,封装在线考试的分页响应信息 - *

- * 此类用于封装在线考试相关的分页数据,提供给前端展示。 - * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@ApiModel(value="在线考试分页响应类", description="在线考试分页响应类") // Swagger注解,描述这个类的用途 -public class ExamOnlineRespDTO extends ExamDTO { // 声明类,继承自ExamDTO +*

+* 考试分页响应类 +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +@Data +@ApiModel(value="在线考试分页响应类", description="在线考试分页响应类") +public class ExamOnlineRespDTO extends ExamDTO { - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制,确保类的版本唯一性 -} \ No newline at end of file + private static final long serialVersionUID = 1L; + + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/response/ExamReviewRespDTO.java b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/response/ExamReviewRespDTO.java index 68d4236..7d9ad36 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/dto/response/ExamReviewRespDTO.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/dto/response/ExamReviewRespDTO.java @@ -1,28 +1,31 @@ -package com.yf.exam.modules.exam.dto.response; // 定义包名,响应DTO类所在的包路径 +package com.yf.exam.modules.exam.dto.response; -import com.yf.exam.modules.exam.dto.ExamDTO; // 导入基础考试DTO类 -import io.swagger.annotations.ApiModel; // 导入Swagger注解,用于描述模型 -import io.swagger.annotations.ApiModelProperty; // 导入Swagger注解,用于描述模型属性 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 +import com.yf.exam.modules.exam.dto.ExamDTO; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; /** - *

- * 阅卷分页响应类,封装阅卷相关的分页响应信息 - *

- * 此类用于封装阅卷相关的分页数据,提供给前端展示。 - * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@ApiModel(value="阅卷分页响应类", description="阅卷分页响应类") // Swagger注解,描述这个类的用途 -public class ExamReviewRespDTO extends ExamDTO { // 声明类,继承自ExamDTO - - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制,确保类的版本唯一性 - - @ApiModelProperty(value = "考试人数", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer examUser; // 考试人数,表示参与考试的用户总数 - - @ApiModelProperty(value = "待阅试卷", required=true) // Swagger注解,描述字段的用途和是否必填 - private Integer unreadPaper; // 待阅试卷数量,表示尚未被阅卷的试卷数量 -} \ No newline at end of file +*

+* 考试分页响应类 +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +@Data +@ApiModel(value="阅卷分页响应类", description="阅卷分页响应类") +public class ExamReviewRespDTO extends ExamDTO { + + private static final long serialVersionUID = 1L; + + + @ApiModelProperty(value = "考试人数", required=true) + private Integer examUser; + + @ApiModelProperty(value = "待阅试卷", required=true) + private Integer unreadPaper; + + + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/entity/Exam.java b/exam-api/src/main/java/com/yf/exam/modules/exam/entity/Exam.java index cd2d284..e198c69 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/entity/Exam.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/entity/Exam.java @@ -1,61 +1,100 @@ -package com.yf.exam.modules.exam.entity; // 定义包名,实体类所在的包路径 +package com.yf.exam.modules.exam.entity; -import com.baomidou.mybatisplus.annotation.IdType; // 导入MyBatis Plus的ID类型注解 -import com.baomidou.mybatisplus.annotation.TableField; // 导入MyBatis Plus的表字段注解 -import com.baomidou.mybatisplus.annotation.TableId; // 导入MyBatis Plus的表ID注解 -import com.baomidou.mybatisplus.annotation.TableName; // 导入MyBatis Plus的表名注解 -import com.baomidou.mybatisplus.extension.activerecord.Model; // 导入MyBatis Plus的模型类 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 -import java.util.Date; // 导入Java的日期类 +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.extension.activerecord.Model; +import lombok.Data; +import java.util.Date; /** - *

- * 考试实体类,封装考试的基本信息 - *

- * 此类用于数据库操作,映射考试表的字段。 - * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@TableName("el_exam") // MyBatis Plus注解,指定这个实体类对应的数据库表名 -public class Exam extends Model { // 声明类,继承自MyBatis Plus的Model类,用于数据库操作 - - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制,确保类的唯一性 - - @TableId(value = "id", type = IdType.ASSIGN_ID) // MyBatis Plus注解,指定这个字段为表的主键,类型为自增ID - private String id; // 考试ID,唯一标识符 - - private String title; // 考试名称,描述考试的标题 - - private String content; // 考试描述,详细描述考试的内容 - - @TableField("open_type") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Integer openType; // 开放类型,表示考试的开放范围(1公开,2部门,3定员) - - private Integer state; // 考试状态,表示考试的当前状态(如:未开始、进行中、已结束) - - @TableField("time_limit") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Boolean timeLimit; // 是否限时,表示考试是否有时间限制 - - @TableField("start_time") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Date startTime; // 开始时间,表示考试的开始时间 - - @TableField("end_time") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Date endTime; // 结束时间,表示考试的结束时间 - - @TableField("create_time") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Date createTime; // 创建时间,表示记录的创建时间 - - @TableField("update_time") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Date updateTime; // 更新时间,表示记录的最后更新时间 - - @TableField("total_score") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Integer totalScore; // 总分数,表示考试的总分 - - @TableField("total_time") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Integer totalTime; // 总时长(分钟),表示考试的总时长 - - @TableField("qualify_score") // MyBatis Plus注解,指定这个字段在数据库表中的列名 - private Integer qualifyScore; // 及格分数,表示考试的及格分数线 -} \ No newline at end of file +*

+* 考试实体类 +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +@Data +@TableName("el_exam") +public class Exam extends Model { + + private static final long serialVersionUID = 1L; + + /** + * ID + */ + @TableId(value = "id", type = IdType.ASSIGN_ID) + private String id; + + /** + * 考试名称 + */ + private String title; + + /** + * 考试描述 + */ + private String content; + + /** + * 1公开2部门3定员 + */ + @TableField("open_type") + private Integer openType; + + /** + * 考试状态 + */ + private Integer state; + + /** + * 是否限时 + */ + @TableField("time_limit") + private Boolean timeLimit; + + /** + * 开始时间 + */ + @TableField("start_time") + private Date startTime; + + /** + * 结束时间 + */ + @TableField("end_time") + private Date endTime; + + /** + * 创建时间 + */ + @TableField("create_time") + private Date createTime; + + /** + * 更新时间 + */ + @TableField("update_time") + private Date updateTime; + + /** + * 总分数 + */ + @TableField("total_score") + private Integer totalScore; + + /** + * 总时长(分钟) + */ + @TableField("total_time") + private Integer totalTime; + + /** + * 及格分数 + */ + @TableField("qualify_score") + private Integer qualifyScore; + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/entity/ExamDepart.java b/exam-api/src/main/java/com/yf/exam/modules/exam/entity/ExamDepart.java index b39d71c..19a4238 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/entity/ExamDepart.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/entity/ExamDepart.java @@ -1,47 +1,42 @@ -package com.yf.exam.modules.exam.entity; // 定义包名,实体类所在的包路径 +package com.yf.exam.modules.exam.entity; -import com.baomidou.mybatisplus.annotation.IdType; // 导入MyBatis Plus的ID类型注解 -import com.baomidou.mybatisplus.annotation.TableField; // 导入MyBatis Plus的表字段注解 -import com.baomidou.mybatisplus.annotation.TableId; // 导入MyBatis Plus的表ID注解 -import com.baomidou.mybatisplus.annotation.TableName; // 导入MyBatis Plus的表名注解 -import com.baomidou.mybatisplus.extension.activerecord.Model; // 导入MyBatis Plus的模型类 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 - -import java.io.Serializable; // 导入Java的序列化接口,用于确保对象可以被序列化 +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.extension.activerecord.Model; +import lombok.Data; /** - *

- * 考试部门实体类,封装考试部门的基本信息 - *

- * 此类用于数据库操作,映射考试部门表的字段。 - * - * @author 聪明笨狗 - * @since 2020-09-03 17:24 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@TableName("el_exam_depart") // MyBatis Plus注解,指定这个实体类对应的数据库表名 -public class ExamDepart extends Model { // 声明类,继承自MyBatis Plus的Model类,用于数据库操作 - - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制,确保类的唯一性 +*

+* 考试部门实体类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-03 17:24 +*/ +@Data +@TableName("el_exam_depart") +public class ExamDepart extends Model { + private static final long serialVersionUID = 1L; + /** - * ID - * 唯一标识符,用于标识考试部门记录。 - */ - @TableId(value = "id", type = IdType.ASSIGN_ID) // MyBatis Plus注解,指定这个字段为表的主键,类型为自增ID + * ID + */ + @TableId(value = "id", type = IdType.ASSIGN_ID) private String id; /** - * 考试ID - * 关联的考试ID,标识这个部门所属的考试。 - */ - @TableField("exam_id") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 考试ID + */ + @TableField("exam_id") private String examId; /** - * 部门ID - * 关联的部门ID,标识参与考试的部门。 - */ - @TableField("depart_id") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 部门ID + */ + @TableField("depart_id") private String departId; -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/entity/ExamRepo.java b/exam-api/src/main/java/com/yf/exam/modules/exam/entity/ExamRepo.java index 5249056..3884051 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/entity/ExamRepo.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/entity/ExamRepo.java @@ -1,87 +1,78 @@ -package com.yf.exam.modules.exam.entity; // 定义包名,实体类所在的包路径 +package com.yf.exam.modules.exam.entity; -import com.baomidou.mybatisplus.annotation.IdType; // 导入MyBatis Plus的ID类型注解 -import com.baomidou.mybatisplus.annotation.TableField; // 导入MyBatis Plus的表字段注解 -import com.baomidou.mybatisplus.annotation.TableId; // 导入MyBatis Plus的表ID注解 -import com.baomidou.mybatisplus.annotation.TableName; // 导入MyBatis Plus的表名注解 -import com.baomidou.mybatisplus.extension.activerecord.Model; // 导入MyBatis Plus的模型类 -import lombok.Data; // 导入Lombok注解,用于简化数据类的编写 +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.extension.activerecord.Model; +import lombok.Data; /** - *

- * 考试题库实体类,封装考试题库的基本信息 - *

- * 此类用于数据库操作,映射考试题库表的字段。 - * - * @author 聪明笨狗 - * @since 2020-09-05 11:14 - */ -@Data // Lombok注解,标记这个类为数据类,自动生成getter和setter方法 -@TableName("el_exam_repo") // MyBatis Plus注解,指定这个实体类对应的数据库表名 -public class ExamRepo extends Model { // 声明类,继承自MyBatis Plus的Model类,用于数据库操作 - - private static final long serialVersionUID = 1L; // 序列化ID,用于版本控制,确保类的唯一性 +*

+* 考试题库实体类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-05 11:14 +*/ +@Data +@TableName("el_exam_repo") +public class ExamRepo extends Model { + private static final long serialVersionUID = 1L; + /** - * ID - * 唯一标识符,用于标识考试题库记录。 - */ - @TableId(value = "id", type = IdType.ASSIGN_ID) // MyBatis Plus注解,指定这个字段为表的主键,类型为自增ID + * ID + */ + @TableId(value = "id", type = IdType.ASSIGN_ID) private String id; /** - * 考试ID - * 关联的考试ID,标识这个题库所属的考试。 - */ - @TableField("exam_id") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 考试ID + */ + @TableField("exam_id") private String examId; /** - * 题库ID - * 关联的题库ID,标识具体的题库。 - */ - @TableField("repo_id") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 题库ID + */ + @TableField("repo_id") private String repoId; /** - * 单选题数量 - * 题库中包含的单选题数量。 - */ - @TableField("radio_count") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 单选题数量 + */ + @TableField("radio_count") private Integer radioCount; /** - * 单选题分数 - * 单选题的总分。 - */ - @TableField("radio_score") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 单选题分数 + */ + @TableField("radio_score") private Integer radioScore; /** - * 多选题数量 - * 题库中包含的多选题数量。 - */ - @TableField("multi_count") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 多选题数量 + */ + @TableField("multi_count") private Integer multiCount; /** - * 多选题分数 - * 多选题的总分。 - */ - @TableField("multi_score") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 多选题分数 + */ + @TableField("multi_score") private Integer multiScore; /** - * 判断题数量 - * 题库中包含的判断题数量。 - */ - @TableField("judge_count") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 判断题数量 + */ + @TableField("judge_count") private Integer judgeCount; /** - * 判断题分数 - * 判断题的总分。 - */ - @TableField("judge_score") // MyBatis Plus注解,指定这个字段在数据库表中的列名 + * 判断题分数 + */ + @TableField("judge_score") private Integer judgeScore; -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamDepartMapper.java b/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamDepartMapper.java index 60c30d2..0c1f39a 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamDepartMapper.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamDepartMapper.java @@ -1,17 +1,15 @@ -package com.yf.exam.modules.exam.mapper; // 定义包名,Mapper接口所在的包路径 - -import com.baomidou.mybatisplus.core.mapper.BaseMapper; // 导入MyBatis Plus的基础Mapper接口 -import com.yf.exam.modules.exam.entity.ExamDepart; // 导入考试部门实体类 +package com.yf.exam.modules.exam.mapper; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.yf.exam.modules.exam.entity.ExamDepart; /** - *

- * 考试部门Mapper,提供考试部门的数据库操作接口 - *

- * 此类是一个Mapper接口,继承自MyBatis Plus的BaseMapper,用于定义针对考试部门表的数据库操作。 - * - * @author 聪明笨狗 - * @since 2020-09-03 17:24 - */ -public interface ExamDepartMapper extends BaseMapper { // 声明接口,继承自BaseMapper并指定操作的实体类为ExamDepart - // 继承BaseMapper,提供基本的CRUD操作(创建、读取、更新、删除) -} \ No newline at end of file +*

+* 考试部门Mapper +*

+* +* @author 聪明笨狗 +* @since 2020-09-03 17:24 +*/ +public interface ExamDepartMapper extends BaseMapper { + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamMapper.java b/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamMapper.java index f4908e8..1ce4504 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamMapper.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamMapper.java @@ -1,52 +1,45 @@ -package com.yf.exam.modules.exam.mapper; // 定义包名,Mapper接口所在的包路径 +package com.yf.exam.modules.exam.mapper; -import com.baomidou.mybatisplus.core.mapper.BaseMapper; // 导入MyBatis Plus的基础Mapper接口 -import com.baomidou.mybatisplus.core.metadata.IPage; // 导入MyBatis Plus的分页结果接口 -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; // 导入MyBatis Plus的分页对象 -import com.yf.exam.modules.exam.dto.ExamDTO; // 导入考试DTO -import com.yf.exam.modules.exam.dto.response.ExamReviewRespDTO; // 导入阅卷分页响应DTO -import com.yf.exam.modules.exam.dto.response.ExamOnlineRespDTO; // 导入在线考试分页响应DTO -import com.yf.exam.modules.exam.entity.Exam; // 导入考试实体类 -import org.apache.ibatis.annotations.Param; // 导入MyBatis的参数注解 +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.yf.exam.modules.exam.dto.ExamDTO; +import com.yf.exam.modules.exam.dto.response.ExamReviewRespDTO; +import com.yf.exam.modules.exam.dto.response.ExamOnlineRespDTO; +import com.yf.exam.modules.exam.entity.Exam; +import org.apache.ibatis.annotations.Param; /** - *

- * 考试Mapper,提供考试的数据库操作接口 - *

- * 此类是一个Mapper接口,继承自MyBatis Plus的BaseMapper,用于定义针对考试表的数据库操作。 - * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -public interface ExamMapper extends BaseMapper { // 声明接口,继承自BaseMapper并指定操作的实体类为Exam +*

+* 考试Mapper +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +public interface ExamMapper extends BaseMapper { /** * 查找分页内容 - * 方法用于根据给定的分页对象和查询条件,查询考试数据的分页结果。 - * - * @param page 分页对象,包含分页信息,如当前页码和每页大小 - * @param query 查询条件,封装了考试查询的相关信息 - * @return IPage 返回包含考试DTO的分页结果 + * @param page + * @param query + * @return */ IPage paging(Page page, @Param("query") ExamDTO query); /** * 查找分页内容 - * 方法用于根据给定的分页对象和查询条件,查询阅卷数据的分页结果。 - * - * @param page 分页对象,包含分页信息,如当前页码和每页大小 - * @param query 查询条件,封装了考试查询的相关信息 - * @return IPage 返回包含阅卷分页响应DTO的分页结果 + * @param page + * @param query + * @return */ IPage reviewPaging(Page page, @Param("query") ExamDTO query); /** * 在线考试分页响应类-考生视角 - * 方法用于根据给定的分页对象和查询条件,查询在线考试数据的分页结果,从考生视角。 - * - * @param page 分页对象,包含分页信息,如当前页码和每页大小 - * @param query 查询条件,封装了考试查询的相关信息 - * @return IPage 返回包含在线考试分页响应DTO的分页结果 + * @param page + * @param query + * @return */ IPage online(Page page, @Param("query") ExamDTO query); -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamRepoMapper.java b/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamRepoMapper.java index 69900d2..83407df 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamRepoMapper.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/mapper/ExamRepoMapper.java @@ -1,29 +1,26 @@ -package com.yf.exam.modules.exam.mapper; // 定义包名,Mapper接口所在的包路径 +package com.yf.exam.modules.exam.mapper; -import com.baomidou.mybatisplus.core.mapper.BaseMapper; // 导入MyBatis Plus的基础Mapper接口 -import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; // 导入考试题库扩展DTO -import com.yf.exam.modules.exam.entity.ExamRepo; // 导入考试题库实体类 -import org.apache.ibatis.annotations.Param; // 导入MyBatis的参数注解 +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; +import com.yf.exam.modules.exam.entity.ExamRepo; +import org.apache.ibatis.annotations.Param; -import java.util.List; // 导入Java的List接口 +import java.util.List; /** - *

- * 考试题库Mapper,提供考试题库的数据库操作接口 - *

- * 此类是一个Mapper接口,继承自MyBatis Plus的BaseMapper,用于定义针对考试题库表的数据库操作。 - * - * @author 聪明笨狗 - * @since 2020-09-05 11:14 - */ -public interface ExamRepoMapper extends BaseMapper { // 声明接口,继承自BaseMapper并指定操作的实体类为ExamRepo +*

+* 考试题库Mapper +*

+* +* @author 聪明笨狗 +* @since 2020-09-05 11:14 +*/ +public interface ExamRepoMapper extends BaseMapper { /** * 查找考试题库列表 - * 方法用于根据给定的考试ID,查询关联的考试题库列表,返回扩展的DTO对象。 - * - * @param examId 考试ID,用于指定查询哪个考试的题库列表 - * @return List 返回包含考试题库扩展信息的列表 + * @param examId + * @return */ - List listByExam(@Param("examId") String examId); // 使用MyBatis的@Param注解来指定方法参数的名称 -} \ No newline at end of file + List listByExam(@Param("examId") String examId); +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamDepartService.java b/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamDepartService.java index 068a6dc..301c010 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamDepartService.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamDepartService.java @@ -1,36 +1,32 @@ -package com.yf.exam.modules.exam.service; // 定义包名,服务接口所在的包路径 +package com.yf.exam.modules.exam.service; -import com.baomidou.mybatisplus.extension.service.IService; // 导入MyBatis Plus的服务接口 -import com.yf.exam.modules.exam.entity.ExamDepart; // 导入考试部门实体类 +import com.baomidou.mybatisplus.extension.service.IService; +import com.yf.exam.modules.exam.entity.ExamDepart; -import java.util.List; // 导入Java的List接口 +import java.util.List; /** - *

- * 考试部门业务类,提供考试部门的业务逻辑 - *

- * 此类是一个服务接口,继承自MyBatis Plus的IService,用于定义考试部门相关的业务操作。 - * - * @author 聪明笨狗 - * @since 2020-09-03 17:24 - */ -public interface ExamDepartService extends IService { // 声明接口,继承自IService并指定操作的实体类为ExamDepart +*

+* 考试部门业务类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-03 17:24 +*/ +public interface ExamDepartService extends IService { /** - * 保存全部部门信息 - * 方法用于根据给定的考试ID和部门ID列表,保存考试与部门的关联关系。 - * - * @param examId 考试ID,标识要关联的考试 - * @param departs 部门ID列表,包含要关联的部门ID + * 保存全部 + * @param examId + * @param departs */ void saveAll(String examId, List departs); + /** * 根据考试查找对应的部门 - * 方法用于根据给定的考试ID,查询与之关联的部门ID列表。 - * - * @param examId 考试ID,用于指定查询哪个考试的部门 - * @return List 返回部门ID列表,包含所有与考试关联的部门ID + * @param examId + * @return */ List listByExam(String examId); -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamRepoService.java b/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamRepoService.java index 5758185..78b4ec1 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamRepoService.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamRepoService.java @@ -1,45 +1,40 @@ -package com.yf.exam.modules.exam.service; // 定义包名,服务接口所在的包路径 +package com.yf.exam.modules.exam.service; -import com.baomidou.mybatisplus.extension.service.IService; // 导入MyBatis Plus的服务接口 -import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; // 导入考试题库扩展DTO -import com.yf.exam.modules.exam.entity.ExamRepo; // 导入考试题库实体类 +import com.baomidou.mybatisplus.extension.service.IService; +import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; +import com.yf.exam.modules.exam.entity.ExamRepo; -import java.util.List; // 导入Java的List接口 +import java.util.List; /** - *

- * 考试题库业务类,提供考试题库的业务逻辑 - *

- * 此类是一个服务接口,继承自MyBatis Plus的IService,用于定义考试题库相关的业务操作。 - * - * @author 聪明笨狗 - * @since 2020-09-05 11:14 - */ -public interface ExamRepoService extends IService { // 声明接口,继承自IService并指定操作的实体类为ExamRepo +*

+* 考试题库业务类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-05 11:14 +*/ +public interface ExamRepoService extends IService { + /** - * 保存全部题库信息 - * 方法用于根据给定的考试ID和题库列表,保存考试与题库的关联关系。 - * - * @param examId 考试ID,标识要关联的考试 - * @param list 题库列表,包含要关联的题库信息 + * 保存全部 + * @param examId + * @param list */ void saveAll(String examId, List list); /** * 查找考试题库列表 - * 方法用于根据给定的考试ID,查询与之关联的题库列表。 - * - * @param examId 考试ID,用于指定查询哪个考试的题库 - * @return List 返回题库列表,包含所有与考试关联的题库信息 + * @param examId + * @return */ List listByExam(String examId); /** * 清理脏数据 - * 方法用于清除与指定考试ID关联的题库数据,用于数据清理或重置场景。 - * - * @param examId 考试ID,用于指定要清理的考试关联的题库数据 + * @param examId */ void clear(String examId); -} \ No newline at end of file + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamService.java b/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamService.java index 47d77b8..3f75664 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamService.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/service/ExamService.java @@ -1,75 +1,64 @@ -package com.yf.exam.modules.exam.service; // 定义包名,服务接口所在的包路径 +package com.yf.exam.modules.exam.service; -import com.baomidou.mybatisplus.core.metadata.IPage; // 导入MyBatis Plus的分页结果接口 -import com.baomidou.mybatisplus.extension.service.IService; // 导入MyBatis Plus的服务接口 -import com.yf.exam.core.api.dto.PagingReqDTO; // 导入分页请求DTO -import com.yf.exam.modules.exam.dto.ExamDTO; // 导入考试DTO -import com.yf.exam.modules.exam.dto.request.ExamSaveReqDTO; // 导入考试保存请求DTO -import com.yf.exam.modules.exam.dto.response.ExamOnlineRespDTO; // 导入在线考试响应DTO -import com.yf.exam.modules.exam.dto.response.ExamReviewRespDTO; // 导入阅卷响应DTO -import com.yf.exam.modules.exam.entity.Exam; // 导入考试实体类 +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.service.IService; +import com.yf.exam.core.api.dto.PagingReqDTO; +import com.yf.exam.modules.exam.dto.ExamDTO; +import com.yf.exam.modules.exam.dto.request.ExamSaveReqDTO; +import com.yf.exam.modules.exam.dto.response.ExamOnlineRespDTO; +import com.yf.exam.modules.exam.dto.response.ExamReviewRespDTO; +import com.yf.exam.modules.exam.entity.Exam; /** - *

- * 考试业务类,提供考试的业务逻辑 - *

- * 此类是一个服务接口,继承自MyBatis Plus的IService,用于定义考试相关的业务操作。 - * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -public interface ExamService extends IService { // 声明接口,继承自IService并指定操作的实体类为Exam +*

+* 考试业务类 +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +public interface ExamService extends IService { /** * 保存考试信息 - * 方法用于保存考试信息,包括考试的基本信息和相关联的题库、部门等。 - * - * @param reqDTO 考试保存请求数据传输对象,包含考试的详细信息 + * @param reqDTO */ void save(ExamSaveReqDTO reqDTO); /** * 查找考试详情 - * 方法用于根据考试ID查询考试的详细信息,包括考试的基本数据和相关联的部门、题库等。 - * - * @param id 考试ID,用于指定要查询的考试 - * @return ExamSaveReqDTO 返回考试详情,包含考试的详细信息 + * @param id + * @return */ ExamSaveReqDTO findDetail(String id); /** * 查找考试详情--简要信息 - * 方法用于根据考试ID查询考试的简要信息,通常用于列表展示。 - * - * @param id 考试ID,用于指定要查询的考试 - * @return ExamDTO 返回考试简要信息,包含考试的基本数据 + * @param id + * @return */ ExamDTO findById(String id); /** - * 分页查询数据 - * 方法用于分页查询考试数据,通常用于列表展示。 - * - * @param reqDTO 分页请求数据传输对象,包含分页信息和查询条件 - * @return IPage 返回分页考试数据,包含考试列表和分页信息 - */ + * 分页查询数据 + * @param reqDTO + * @return + */ IPage paging(PagingReqDTO reqDTO); + /** * 在线考试分页响应类-考生视角 - * 方法用于分页查询在线考试数据,从考生视角,通常用于考生查看可参加的考试列表。 - * - * @param reqDTO 分页请求数据传输对象,包含分页信息和查询条件 - * @return IPage 返回分页在线考试数据,包含在线考试列表和分页信息 + * @param reqDTO + * @return */ IPage onlinePaging(PagingReqDTO reqDTO); + /** * 待阅试卷列表 - * 方法用于分页查询待阅试卷数据,通常用于阅卷老师查看需要批改的试卷列表。 - * - * @param reqDTO 分页请求数据传输对象,包含分页信息和查询条件 - * @return IPage 返回分页待阅试卷数据,包含待阅试卷列表和分页信息 + * @param reqDTO + * @return */ IPage reviewPaging(PagingReqDTO reqDTO); -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamDepartServiceImpl.java b/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamDepartServiceImpl.java index 3460e7c..37ca2ff 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamDepartServiceImpl.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamDepartServiceImpl.java @@ -1,64 +1,66 @@ -package com.yf.exam.modules.exam.service.impl; // 定义包名,服务实现类所在的包路径 +package com.yf.exam.modules.exam.service.impl; -import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; // 导入MyBatis Plus的查询包装类 -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; // 导入MyBatis Plus的服务实现类 -import com.yf.exam.core.exception.ServiceException; // 导入自定义的服务异常类 -import com.yf.exam.modules.exam.entity.ExamDepart; // 导入考试部门实体类 -import com.yf.exam.modules.exam.mapper.ExamDepartMapper; // 导入考试部门Mapper接口 -import com.yf.exam.modules.exam.service.ExamDepartService; // 导入考试部门服务接口 -import org.springframework.stereotype.Service; // 导入Spring的服务注解 -import org.springframework.util.CollectionUtils; // 导入Spring的集合工具类 +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.yf.exam.core.exception.ServiceException; +import com.yf.exam.modules.exam.entity.ExamDepart; +import com.yf.exam.modules.exam.mapper.ExamDepartMapper; +import com.yf.exam.modules.exam.service.ExamDepartService; +import org.springframework.stereotype.Service; +import org.springframework.util.CollectionUtils; -import java.util.ArrayList; // 导入Java的ArrayList类 -import java.util.List; // 导入Java的List接口 +import java.util.ArrayList; +import java.util.List; /** - *

- * 考试部门业务实现类,提供考试部门的具体业务逻辑实现 - *

- * 此类实现了ExamDepartService接口,用于处理考试部门相关的业务逻辑。 - * - * @author 聪明笨狗 - * @since 2020-09-03 17:24 - */ -@Service // Spring注解,声明这是一个服务组件 -public class ExamDepartServiceImpl extends ServiceImpl implements ExamDepartService { // 声明类,继承自ServiceImpl并实现ExamDepartService接口 +*

+* 考试部门业务实现类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-03 17:24 +*/ +@Service +public class ExamDepartServiceImpl extends ServiceImpl implements ExamDepartService { @Override public void saveAll(String examId, List departs) { - // 先删除已有的部门 + + // 先删除 QueryWrapper wrapper = new QueryWrapper<>(); - wrapper.lambda().eq(ExamDepart::getExamId, examId); // 构造查询条件,查询指定考试ID的部门 - this.remove(wrapper); // 根据条件删除部门 + wrapper.lambda().eq(ExamDepart::getExamId, examId); + this.remove(wrapper); - // 再增加新的部门 - if (CollectionUtils.isEmpty(departs)) { // 检查部门列表是否为空 - throw new ServiceException(1, "请至少选择选择一个部门!!"); // 如果为空,抛出异常 + // 再增加 + if(CollectionUtils.isEmpty(departs)){ + throw new ServiceException(1, "请至少选择选择一个部门!!"); } - List list = new ArrayList<>(); // 创建考试部门列表 + List list = new ArrayList<>(); - for (String id : departs) { - ExamDepart depart = new ExamDepart(); // 创建考试部门对象 - depart.setDepartId(id); // 设置部门ID - depart.setExamId(examId); // 设置考试ID - list.add(depart); // 添加到列表 + for(String id: departs){ + ExamDepart depart = new ExamDepart(); + depart.setDepartId(id); + depart.setExamId(examId); + list.add(depart); } - this.saveBatch(list); // 批量保存部门 + this.saveBatch(list); } @Override public List listByExam(String examId) { - // 查找考试对应的部门 + // 先删除 QueryWrapper wrapper = new QueryWrapper<>(); - wrapper.lambda().eq(ExamDepart::getExamId, examId); // 构造查询条件,查询指定考试ID的部门 - List list = this.list(wrapper); // 根据条件查询部门列表 - List ids = new ArrayList<>(); // 创建部门ID列表 - if (!CollectionUtils.isEmpty(list)) { // 检查部门列表是否为空 - for (ExamDepart item : list) { - ids.add(item.getDepartId()); // 添加部门ID到列表 + wrapper.lambda().eq(ExamDepart::getExamId, examId); + List list = this.list(wrapper); + List ids = new ArrayList<>(); + if(!CollectionUtils.isEmpty(list)){ + for(ExamDepart item: list){ + ids.add(item.getDepartId()); } } - return ids; // 返回部门ID列表 + + return ids; + } -} \ No newline at end of file +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamRepoServiceImpl.java b/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamRepoServiceImpl.java index e161f56..ea630e6 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamRepoServiceImpl.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamRepoServiceImpl.java @@ -1,63 +1,67 @@ -package com.yf.exam.modules.exam.service.impl; // 定义包名,服务实现类所在的包路径 - -import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; // 导入MyBatis Plus的查询包装类 -import com.baomidou.mybatisplus.core.toolkit.IdWorker; // 导入MyBatis Plus的ID生成工具类 -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; // 导入MyBatis Plus的服务实现类 -import com.yf.exam.core.exception.ServiceException; // 导入自定义的服务异常类 -import com.yf.exam.core.utils.BeanMapper; // 导入自定义的Bean映射工具类 -import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; // 导入考试题库扩展DTO -import com.yf.exam.modules.exam.entity.ExamRepo; // 导入考试题库实体类 -import com.yf.exam.modules.exam.mapper.ExamRepoMapper; // 导入考试题库Mapper接口 -import com.yf.exam.modules.exam.service.ExamRepoService; // 导入考试题库服务接口 -import org.springframework.stereotype.Service; // 导入Spring的服务注解 -import org.springframework.transaction.annotation.Transactional; // 导入Spring的事务注解 -import org.springframework.util.CollectionUtils; // 导入Spring的集合工具类 - -import java.util.List; // 导入Java的List接口 +package com.yf.exam.modules.exam.service.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.IdWorker; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.yf.exam.core.exception.ServiceException; +import com.yf.exam.core.utils.BeanMapper; +import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; +import com.yf.exam.modules.exam.entity.ExamRepo; +import com.yf.exam.modules.exam.mapper.ExamRepoMapper; +import com.yf.exam.modules.exam.service.ExamRepoService; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.util.CollectionUtils; + +import java.util.List; /** - *

- * 考试题库业务实现类,提供考试题库的具体业务逻辑实现 - *

- * 此类实现了ExamRepoService接口,用于处理考试题库相关的业务逻辑。 - * - * @author 聪明笨狗 - * @since 2020-09-05 11:14 - */ -@Service // Spring注解,声明这是一个服务组件 -public class ExamRepoServiceImpl extends ServiceImpl implements ExamRepoService { // 声明类,继承自ServiceImpl并实现ExamRepoService接口 - - @Transactional(rollbackFor = Exception.class) // Spring事务注解,声明事务边界和回滚条件 +*

+* 考试题库业务实现类 +*

+* +* @author 聪明笨狗 +* @since 2020-09-05 11:14 +*/ +@Service +public class ExamRepoServiceImpl extends ServiceImpl implements ExamRepoService { + + + @Transactional(rollbackFor = Exception.class) @Override public void saveAll(String examId, List list) { - // 先删除已有的题库 + + // 先删除 QueryWrapper wrapper = new QueryWrapper<>(); - wrapper.lambda().eq(ExamRepo::getExamId, examId); // 构造查询条件,查询指定考试ID的题库 - this.remove(wrapper); // 根据条件删除题库 + wrapper.lambda().eq(ExamRepo::getExamId, examId); + this.remove(wrapper); - // 再增加新的题库 - if (CollectionUtils.isEmpty(list)) { // 检查题库列表是否为空 - throw new ServiceException(1, "必须选择题库!"); // 如果为空,抛出异常 + // 再增加 + if(CollectionUtils.isEmpty(list)){ + throw new ServiceException(1, "必须选择题库!"); } - List repos = BeanMapper.mapList(list, ExamRepo.class); // 使用BeanMapper将DTO列表转换为实体类列表 - for (ExamRepo item : repos) { - item.setExamId(examId); // 设置考试ID - item.setId(IdWorker.getIdStr()); // 使用IdWorker生成ID + List repos = BeanMapper.mapList(list, ExamRepo.class); + for(ExamRepo item: repos){ + item.setExamId(examId); + item.setId(IdWorker.getIdStr()); } - this.saveBatch(repos); // 批量保存题库 + this.saveBatch(repos); } @Override public List listByExam(String examId) { - return baseMapper.listByExam(examId); // 调用Mapper接口的方法,查找考试题库列表 + return baseMapper.listByExam(examId); } @Override public void clear(String examId) { - // 先删除已有的题库 + + // 先删除 QueryWrapper wrapper = new QueryWrapper<>(); - wrapper.lambda().eq(ExamRepo::getExamId, examId); // 构造查询条件,查询指定考试ID的题库 - this.remove(wrapper); // 根据条件删除题库 + wrapper.lambda().eq(ExamRepo::getExamId, examId); + this.remove(wrapper); } -} \ No newline at end of file + + +} diff --git a/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamServiceImpl.java b/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamServiceImpl.java index 50ae151..7451bd9 100644 --- a/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamServiceImpl.java +++ b/exam-api/src/main/java/com/yf/exam/modules/exam/service/impl/ExamServiceImpl.java @@ -1,173 +1,194 @@ -package com.yf.exam.modules.exam.service.impl; // 定义包名,服务实现类所在的包路径 - -import com.baomidou.mybatisplus.core.metadata.IPage; // 导入MyBatis Plus的分页结果接口 -import com.baomidou.mybatisplus.core.toolkit.IdWorker; // 导入MyBatis Plus的ID生成工具类 -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; // 导入MyBatis Plus的分页对象 -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; // 导入MyBatis Plus的服务实现类 -import com.yf.exam.core.api.dto.PagingReqDTO; // 导入分页请求DTO -import com.yf.exam.core.enums.OpenType; // 导入开放类型枚举 -import com.yf.exam.core.exception.ServiceException; // 导入自定义的服务异常类 -import com.yf.exam.core.utils.BeanMapper; // 导入自定义的Bean映射工具类 -import com.yf.exam.modules.exam.dto.ExamDTO; // 导入考试DTO -import com.yf.exam.modules.exam.dto.ExamRepoDTO; // 导入考试题库DTO -import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; // 导入考试题库扩展DTO -import com.yf.exam.modules.exam.dto.request.ExamSaveReqDTO; // 导入考试保存请求DTO -import com.yf.exam.modules.exam.dto.response.ExamOnlineRespDTO; // 导入在线考试响应DTO -import com.yf.exam.modules.exam.dto.response.ExamReviewRespDTO; // 导入阅卷响应DTO -import com.yf.exam.modules.exam.entity.Exam; // 导入考试实体类 -import com.yf.exam.modules.exam.mapper.ExamMapper; // 导入考试Mapper接口 -import com.yf.exam.modules.exam.service.ExamDepartService; // 导入考试部门服务接口 -import com.yf.exam.modules.exam.service.ExamRepoService; // 导入考试题库服务接口 -import com.yf.exam.modules.exam.service.ExamService; // 导入考试服务接口 -import org.apache.commons.lang3.StringUtils; // 导入Apache Commons Lang的字符串工具类 -import org.springframework.beans.factory.annotation.Autowired; // 导入Spring的自动注入注解 -import org.springframework.dao.DuplicateKeyException; // 导入Spring的重复键异常类 -import org.springframework.stereotype.Service; // 导入Spring的服务注解 - -import java.util.List; // 导入Java的List接口 +package com.yf.exam.modules.exam.service.impl; + +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.core.toolkit.IdWorker; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.yf.exam.core.api.dto.PagingReqDTO; +import com.yf.exam.core.enums.OpenType; +import com.yf.exam.core.exception.ServiceException; +import com.yf.exam.core.utils.BeanMapper; +import com.yf.exam.modules.exam.dto.ExamDTO; +import com.yf.exam.modules.exam.dto.ExamRepoDTO; +import com.yf.exam.modules.exam.dto.ext.ExamRepoExtDTO; +import com.yf.exam.modules.exam.dto.request.ExamSaveReqDTO; +import com.yf.exam.modules.exam.dto.response.ExamOnlineRespDTO; +import com.yf.exam.modules.exam.dto.response.ExamReviewRespDTO; +import com.yf.exam.modules.exam.entity.Exam; +import com.yf.exam.modules.exam.mapper.ExamMapper; +import com.yf.exam.modules.exam.service.ExamDepartService; +import com.yf.exam.modules.exam.service.ExamRepoService; +import com.yf.exam.modules.exam.service.ExamService; +import org.apache.commons.lang3.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.dao.DuplicateKeyException; +import org.springframework.stereotype.Service; + +import java.util.List; /** - *

- * 考试业务实现类 - *

- * 此类实现了ExamService接口,用于处理考试相关的业务逻辑。 - * - * @author 聪明笨狗 - * @since 2020-07-25 16:18 - */ -@Service // Spring注解,声明这是一个服务组件 -public class ExamServiceImpl extends ServiceImpl implements ExamService { // 声明类,继承自ServiceImpl并实现ExamService接口 +*

+* 考试业务实现类 +*

+* +* @author 聪明笨狗 +* @since 2020-07-25 16:18 +*/ +@Service +public class ExamServiceImpl extends ServiceImpl implements ExamService { + @Autowired - private ExamRepoService examRepoService; // 自动注入考试题库服务 + private ExamRepoService examRepoService; @Autowired - private ExamDepartService examDepartService; // 自动注入考试部门服务 + private ExamDepartService examDepartService; @Override public void save(ExamSaveReqDTO reqDTO) { + // ID String id = reqDTO.getId(); - if(StringUtils.isBlank(id)){ // 如果ID为空,则生成新的ID - id = IdWorker.getIdStr(); // 使用IdWorker生成ID + if(StringUtils.isBlank(id)){ + id = IdWorker.getIdStr(); } - // 复制参数 - Exam entity = new Exam(); // 创建考试实体 + //复制参数 + Exam entity = new Exam(); // 计算分值 - this.calcScore(reqDTO); // 调用方法计算分值 + this.calcScore(reqDTO); + // 复制基本数据 - BeanMapper.copy(reqDTO, entity); // 使用BeanMapper复制属性 - entity.setId(id); // 设置ID + BeanMapper.copy(reqDTO, entity); + entity.setId(id); // 修复状态 - if (reqDTO.getTimeLimit() != null + if (reqDTO.getTimeLimit()!=null && !reqDTO.getTimeLimit() - && reqDTO.getState() != null + && reqDTO.getState()!=null && reqDTO.getState() == 2) { - entity.setState(0); // 如果不限时且状态为2,则状态设置为0 + entity.setState(0); } else { - entity.setState(reqDTO.getState()); // 否则直接设置状态 + entity.setState(reqDTO.getState()); } // 题库组卷 try { - examRepoService.saveAll(id, reqDTO.getRepoList()); // 调用考试题库服务保存题库 + examRepoService.saveAll(id, reqDTO.getRepoList()); }catch (DuplicateKeyException e){ - throw new ServiceException(1, "不能选择重复的题库!"); // 如果出现重复键异常,则抛出服务异常 + throw new ServiceException(1, "不能选择重复的题库!"); } + // 开放的部门 - if(OpenType.DEPT_OPEN.equals(reqDTO.getOpenType())){ // 如果开放类型为部门开放 - examDepartService.saveAll(id, reqDTO.getDepartIds()); // 调用考试部门服务保存部门 + if(OpenType.DEPT_OPEN.equals(reqDTO.getOpenType())){ + examDepartService.saveAll(id, reqDTO.getDepartIds()); } - this.saveOrUpdate(entity); // 保存或更新考试实体 + this.saveOrUpdate(entity); + } @Override public ExamSaveReqDTO findDetail(String id) { - ExamSaveReqDTO respDTO = new ExamSaveReqDTO(); // 创建响应DTO - Exam exam = this.getById(id); // 根据ID查询考试实体 - BeanMapper.copy(exam, respDTO); // 使用BeanMapper复制属性 + ExamSaveReqDTO respDTO = new ExamSaveReqDTO(); + Exam exam = this.getById(id); + BeanMapper.copy(exam, respDTO); // 考试部门 - List departIds = examDepartService.listByExam(id); // 调用考试部门服务查询部门ID列表 - respDTO.setDepartIds(departIds); // 设置部门ID列表 + List departIds = examDepartService.listByExam(id); + respDTO.setDepartIds(departIds); // 题库 - List repos = examRepoService.listByExam(id); // 调用考试题库服务查询题库列表 - respDTO.setRepoList(repos); // 设置题库列表 + List repos = examRepoService.listByExam(id); + respDTO.setRepoList(repos); - return respDTO; // 返回响应DTO + return respDTO; } @Override public ExamDTO findById(String id) { - ExamDTO respDTO = new ExamDTO(); // 创建响应DTO - Exam exam = this.getById(id); // 根据ID查询考试实体 - BeanMapper.copy(exam, respDTO); // 使用BeanMapper复制属性 - return respDTO; // 返回响应DTO + ExamDTO respDTO = new ExamDTO(); + Exam exam = this.getById(id); + BeanMapper.copy(exam, respDTO); + return respDTO; } @Override public IPage paging(PagingReqDTO reqDTO) { - // 创建分页对象 - Page page = new Page(reqDTO.getCurrent(), reqDTO.getSize()); // 使用分页请求DTO创建分页对象 - // 转换结果 - IPage pageData = baseMapper.paging(page, reqDTO.getParams()); // 调用Mapper接口的分页方法 - return pageData; // 返回分页结果 - } + //创建分页对象 + Page page = new Page(reqDTO.getCurrent(), reqDTO.getSize()); + + //转换结果 + IPage pageData = baseMapper.paging(page, reqDTO.getParams()); + return pageData; + } @Override public IPage onlinePaging(PagingReqDTO reqDTO) { + + // 创建分页对象 - Page page = new Page(reqDTO.getCurrent(), reqDTO.getSize()); // 使用分页请求DTO创建分页对象 + Page page = new Page(reqDTO.getCurrent(), reqDTO.getSize()); // 查找分页 - IPage pageData = baseMapper.online(page, reqDTO.getParams()); // 调用Mapper接口的在线考试分页方法 - return pageData; // 返回分页结果 + IPage pageData = baseMapper.online(page, reqDTO.getParams()); + + return pageData; } @Override public IPage reviewPaging(PagingReqDTO reqDTO) { // 创建分页对象 - Page page = new Page(reqDTO.getCurrent(), reqDTO.getSize()); // 使用分页请求DTO创建分页对象 + Page page = new Page(reqDTO.getCurrent(), reqDTO.getSize()); // 查找分页 - IPage pageData = baseMapper.reviewPaging(page, reqDTO.getParams()); // 调用Mapper接口的阅卷分页方法 - return pageData; // 返回分页结果 + IPage pageData = baseMapper.reviewPaging(page, reqDTO.getParams()); + + return pageData; } + /** * 计算分值 - * 方法用于计算考试的总分值,根据题库中的题目数量和分数。 - * - * @param reqDTO 考试保存请求DTO + * @param reqDTO */ - private void calcScore(ExamSaveReqDTO reqDTO) { + private void calcScore(ExamSaveReqDTO reqDTO){ + // 主观题分数 int objScore = 0; // 题库组卷 - List repoList = reqDTO.getRepoList(); // 获取题库列表 - - for(ExamRepoDTO item : repoList){ // 遍历题库列表 - if(item.getRadioCount() != null && item.getRadioCount() > 0 && item.getRadioScore() != null && item.getRadioScore() > 0){ - objScore += item.getRadioCount() * item.getRadioScore(); // 计算单选题分数 + List repoList = reqDTO.getRepoList(); + + for(ExamRepoDTO item: repoList){ + if(item.getRadioCount()!=null + && item.getRadioCount()>0 + && item.getRadioScore()!=null + && item.getRadioScore()>0){ + objScore+=item.getRadioCount()*item.getRadioScore(); } - if(item.getMultiCount() != null && item.getMultiCount() > 0 && item.getMultiScore() != null && item.getMultiScore() > 0){ - objScore += item.getMultiCount() * item.getMultiScore(); // 计算多选题分数 + if(item.getMultiCount()!=null + && item.getMultiCount()>0 + && item.getMultiScore()!=null + && item.getMultiScore()>0){ + objScore+=item.getMultiCount()*item.getMultiScore(); } - if(item.getJudgeCount() != null && item.getJudgeCount() > 0 && item.getJudgeScore() != null && item.getJudgeScore() > 0){ - objScore += item.getJudgeCount() * item.getJudgeScore(); // 计算判断题分数 + if(item.getJudgeCount()!=null + && item.getJudgeCount()>0 + && item.getJudgeScore()!=null + && item.getJudgeScore()>0){ + objScore+=item.getJudgeCount()*item.getJudgeScore(); } } - reqDTO.setTotalScore(objScore); // 设置总分值 + + + reqDTO.setTotalScore(objScore); } -} \ No newline at end of file + +} diff --git a/exam-api/target/classes/application-dev.yml b/exam-api/target/classes/application-dev.yml deleted file mode 100644 index 2c1344a..0000000 --- a/exam-api/target/classes/application-dev.yml +++ /dev/null @@ -1,71 +0,0 @@ -# 开发环境配置文件 -spring: - # 数据库配置 - datasource: - type: com.alibaba.druid.pool.DruidDataSource - driver-class-name: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://localhost:3306/yf_exam_lite?useSSL=false&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&allowPublicKeyRetrieval=true - username: root - password: root@123 - # druid相关配置 - druid: - max-active: 5000 - initial-size: 20 - min-idle: 5 - async-init: true - # 监控统计 - filters: stat,wall - filter: - stat: - log-slow-sql: true - slow-sql-millis: 5000 - wall: - config: - create-table-allow: false - alter-table-allow: false - drop-table-allow: false - truncate-allow: false - - # 定时任务配置 - quartz: - # 数据库方式 - job-store-type: jdbc - # quartz 相关属性配置 - properties: - org: - quartz: - scheduler: - instanceName: eamScheduler - instanceId: AUTO - jobStore: - class: org.quartz.impl.jdbcjobstore.JobStoreTX - driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate - tablePrefix: QRTZ_ - isClustered: true - clusterCheckinInterval: 10000 - useProperties: false - threadPool: - class: org.quartz.simpl.SimpleThreadPool - threadCount: 10 - threadPriority: 5 - threadsInheritContextClassLoaderOfInitializingThread: true - -# 文件上传配置 -conf: - upload: - # 物理文件存储位置,以/结束,windows已正斜杠,如:d:/exam-upload/ - dir: /Users/van/Documents/work/upload/ - # 访问地址,注意不要去除/upload/file/,此节点为虚拟标识符 - # 如:http://localhost:8101/upload/file/exam.jpg,对应物理文件为:/data/upload/exam.jpg - url: http://localhost:8201/upload/file/ - # 允许上传的文件后缀 - allow-extensions: jpg,jpeg,png - -# 开启文档 -swagger: - enable: true - -logging: - level: - root: debug - path: logs/${spring.application.name}/ diff --git a/exam-api/target/classes/application-local.yml b/exam-api/target/classes/application-local.yml deleted file mode 100644 index f5e82aa..0000000 --- a/exam-api/target/classes/application-local.yml +++ /dev/null @@ -1,85 +0,0 @@ -# 独立配置文件,可以拿到jar外面跑 -spring: - application: - name: yf-exam-lite - profiles: - active: dev - main: - allow-bean-definition-overriding: true - # 数据库配置 - datasource: - type: com.alibaba.druid.pool.DruidDataSource - driver-class-name: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://localhost:3306/yf_exam_lite?useSSL=false&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&allowPublicKeyRetrieval=true - username: root - password: root - # druid相关配置 - druid: - max-active: 5000 - initial-size: 20 - min-idle: 5 - async-init: true - # 监控统计 - filters: stat,wall - filter: - stat: - log-slow-sql: true - slow-sql-millis: 5000 - wall: - config: - create-table-allow: false - alter-table-allow: false - drop-table-allow: false - truncate-allow: false - - # 定时任务配置 - quartz: - # 数据库方式 - job-store-type: jdbc - # quartz 相关属性配置 - properties: - org: - quartz: - scheduler: - instanceName: examScheduler - instanceId: AUTO - jobStore: - class: org.quartz.impl.jdbcjobstore.JobStoreTX - driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate - tablePrefix: QRTZ_ - isClustered: true - clusterCheckinInterval: 10000 - useProperties: false - threadPool: - class: org.quartz.simpl.SimpleThreadPool - threadCount: 10 - threadPriority: 5 - threadsInheritContextClassLoaderOfInitializingThread: true - -server: - port: 8101 - # 启用服务端压缩 - compression: - enabled: true - min-response-size: 10 - mime-types: application/json,application/xml,text/html,text/xml,text/plain,application/javascript,text/css - -# 文件上传配置 -conf: - upload: - # 物理文件存储位置,以/结束,windows已正斜杠,如:d:/exam-upload/ - dir: /data/upload/ - # 访问地址,注意不要去除/upload/file/,此节点为虚拟标识符 - # 如:http://localhost:8101/upload/file/exam.jpg,对应物理文件为:/data/upload/exam.jpg - url: http://localhost:8101/upload/file/ - # 允许上传的文件后缀 - allow-extensions: jpg,jpeg,png - -# 开启文档 -swagger: - enable: true - -logging: - level: - root: debug - path: logs/${spring.application.name}/ diff --git a/exam-api/target/classes/application.yml b/exam-api/target/classes/application.yml deleted file mode 100644 index 839f049..0000000 --- a/exam-api/target/classes/application.yml +++ /dev/null @@ -1,15 +0,0 @@ -spring: - application: - name: yf-exam-lite - profiles: - active: dev - main: - allow-bean-definition-overriding: true -server: - port: 8101 - # 启用服务端压缩 - compression: - enabled: true - min-response-size: 10 - mime-types: application/json,application/xml,text/html,text/xml,text/plain,application/javascript,text/css - diff --git a/exam-api/target/classes/com/yf/exam/ability/Constant.class b/exam-api/target/classes/com/yf/exam/ability/Constant.class deleted file mode 100644 index 02974660e2c4c627ff8ae293082aa2544e7cb7f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 375 zcmaJ-O-sW-5Ph2_O`D{)Ry_zJcvBDV#hc=#G*AdCR)RO#q}#e>lSsM|`?EX=9{d6R zC~*=LJ$ZRE?=c^5=Hv729l$AeTv!ZyX_4{uoXcmCagivk%$kpid}Ty#T-XeQrFart zi+sValBG-ygC9o0N$nj6AQ$u%hFv&lQ*?=0=uk$T@CgG_c*6nb_!YgErle0;HvnA> R2!kefu!$ithAl!1+h2SeQ*HnN diff --git a/exam-api/target/classes/com/yf/exam/ability/job/enums/JobGroup.class b/exam-api/target/classes/com/yf/exam/ability/job/enums/JobGroup.class deleted file mode 100644 index 2cc5a78c5d2f19c09e1da4ece0ef1fd8c28a26bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 201 zcmYLDOA5j;5Peg%tyMwXc>$MZT@Bki4jDonD_h#N_ zp0E1@zzqEW9$}K|k~L>0ZoFhXk%cr3%XPwpvSrOSI$2lRUIMfU!<=6^E4a$oKFLLD z2!4Eu56c~4wEZ7rQ%RN034?`Jwc*Mfd0|C}t~1n4ZA3|kVr{EbtYjga@Ygf_r1%6v V%RNaLqXXZ~z%dWucNcwe?+s(4GA{rC diff --git a/exam-api/target/classes/com/yf/exam/ability/job/enums/JobPrefix.class b/exam-api/target/classes/com/yf/exam/ability/job/enums/JobPrefix.class deleted file mode 100644 index 461f20b79850ed2642cec8dfd7a822a0a27e59b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmYLD%?`mp7@W^vX%TVr1a9`?=2XJLPY8*)HM`Afw%XmKw!*79cmNM2%7N4TWHK|) z*Zl!th^B)Qp&y!*-HuFNdCIs@iLy5q8^NT`(=(eJvB~67T^&>iotR%ZOSq2MTEsH6 z1b4ih`io$C@K=QH@*mjQOzCJuXibbhTdwV%C%LSnLGVN-`6>8p21UirN2*=Kj zCX@+u=In*hki|Z|bLQMt1nSeFef2ONPKN|~*FU_iWDxrU0_cl1F!6ZHB2J*}q8A2Fn|E%w zdJ^6}lSnEq69VV|D?uABSekI%$YD|C*SgnLUP_TJ@Fyit(kK&X;P3f9ms!=#{I-7R z@es?^PL?fF>GF#p#O~S%<>NYCO`=MGKndqfpbr(OVl?q)Kn*H5O$!=`bP(y5p^2e| xYXessR>QWSo71h*H=R*E*vzTAp|iGh#&!|jL7`m@?-k*d2foJiKJEtWe*v}Spq~H$ diff --git a/exam-api/target/classes/com/yf/exam/ability/job/service/impl/JobServiceImpl.class b/exam-api/target/classes/com/yf/exam/ability/job/service/impl/JobServiceImpl.class deleted file mode 100644 index e6339666afb5d4c3f3159e39860cb8e254e52732..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5661 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 diff --git a/exam-api/target/classes/com/yf/exam/ability/shiro/CNFilterFactoryBean.class b/exam-api/target/classes/com/yf/exam/ability/shiro/CNFilterFactoryBean.class deleted file mode 100644 index 49d00fcba65ffd9a386326afbbbdbfa681cddc88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1354 zcmb7ET~8B16g^W4EA8@)$d?ErSX#;;B8nv>f*~;}HL->V-=@p79oX*H?H1`z@mKiq zfWZfYul^|Fo$fZF(nxrj*|{_K+7@Vs`t=Eu;pr5xpN zGjt`E4j7`l?xBpK3%w?~(Zev1RgTQnD+TGj7X@1~3};`Wzagep%HRc=lFl zXBfsUPYPcKneCQ^a`uHIO44K4NGxTqQPNzBP5Qi2^7(bYjLv?@L_Y@N7{Ofwqn%1~ zBaVqN++&E9q#pz!dP9`akvI{&?kk(`i)yA96PPkENrK&!>T6jPbvpzzF^&5S{mMBJ zwmN(#Kh|Z<*9E*443V9{0~52DBkdefA$>+$N!o(6&-=OsGI7jf!N4PizBU3T7V((G zCzcG0iGW?x@onKqT7D)ZeAQ%NiK1wjQ(lwai7i_?7)UX!{*S?%Hoie&V@M)xVg;OG zuqOQ-+qI5!uJfv9DMhprA9QCLl~!M@-&ms#UBS>>Y_<)lrn|bW3e<Kwxi`^(=keukNIJdEH1iCp?OlAjSzUm)3ahUL`PCWsC)NnwB~%4UYZXQ|!is0HVd z!a_4}G5`+)cO!vSJfYAgy<5Xm3Oyg~j9 Jn`DjP|Yq diff --git a/exam-api/target/classes/com/yf/exam/ability/shiro/ShiroRealm.class b/exam-api/target/classes/com/yf/exam/ability/shiro/ShiroRealm.class deleted file mode 100644 index e7425c8793afb17469bbe44a95794c99e145a7d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4222 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 diff --git a/exam-api/target/classes/com/yf/exam/ability/shiro/aop/JwtFilter.class b/exam-api/target/classes/com/yf/exam/ability/shiro/aop/JwtFilter.class deleted file mode 100644 index 73e6404e12eaa3972b672d60351971ff9a13b62b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3054 zcmbtW+fo!)6kP{~X&4&85jDhnqR4>SNhGEMMn$}U0xE+T&9!L`(9knIcK2{G_sUzU z@&S1_52><}n4|=?5`D@;zQa`biCos{ZeSQLNmZDt>FIO!+I#JF_TGoz{(AHafOdSU zp+exW<>rjJF+x~;`!L%l1Y%?QA zjIq$bFpI&2Wt=sA+v*8|LKk0UKCmq_u-$y*M4-}f#|6@T%8~DkwNDy-?)bR$It6wO z7HOW7z4>X|w?`b=mCw6Di1ro4adRW?lyOn!rDq0ml#uF^mSgAb;1nIVWQGM2-R`JN zp$_#Lwg~Jj4|Bn^0@s_<(SWT2HRCdf!V4T~>6QpIVvz15uP=C=}kK_FtX8eP~I*|Kj;k8S!dTTxOrbj+flYxMkb{dbY^a) znB86-`>eO>+5aTqN;O^<1x_dM4VXe+0?QK-($u!dG1>dN7tpS5H`)vSQ# zMPgExjpU5PW+^gysI0)gjcjA-1!{9Bzu*$m0Gsrj>M6tIIw^hEANFUjSMriQZ#mi zwuhNRhO4dga0F=_3uClLe&QJPh&JvjVvRUT8%4Vj2414CTB2XZD`awV6_)$lj(ennbrM~dQX*s}^tNdIGb?AwxE$fh7)*&0~P({QDEGAJ;WG6;L z9riURcVt9wP``+pV+J6gof^#zv(ooL1-A)U`LA@DR3cDucl&2y@oE;D@;Zm z@*zH#DkS$k7fOqYgFajVA?%?T(o7q5V#(IFc@)a4suaWKS`XuIhGEC8hne0C!&Zzj YrRmIVmJZu<9mt0pLTLPPsKqD$0L5bONB{r; diff --git a/exam-api/target/classes/com/yf/exam/ability/shiro/jwt/JwtToken.class b/exam-api/target/classes/com/yf/exam/ability/shiro/jwt/JwtToken.class deleted file mode 100644 index 6536cfb7a4abce118b937cf3347c50d9b8fb0858..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1920 zcma)7ZBrXn7(F-HP11CM6oDFx(ptp409zGbNK&)(-e=bn3R^5oxNe+RID&(cT;%+$TM zeg7L-Gv;3D1_)J-;u2y<#!nTqV|b^SQi+odTu9>Zm=U; zU1gG=ehC3H(A5P-H=fnr4t&Sms|ci)9M=gx6c{f&|G2m#U{t+^$|8wT3&VIxAXzBx zoC6aqSQru**>GHStJ~gH{vEm7Qo4{=CqGG+oX0^UXgVE%!p4hCKGwWoqDGOs&_vL!H9DE5(#^km{NS5npt(} zuIkk~ShVmOrnIoUO4>u+Nqr;Xp6@)%Pg6jfu_Q{IU*pKY zTf`biDxLWo!)b_rFp)-*pG@!AXDPFxZ})&rT_?WQ%+$NlwE8X3FPYh+Ws;1h6`N|F z=tAFGrd}q1R{P{=zh}%~Y${h-GL}POCUcc0Wy$2q50IWa#=_UjlY`|bMX7P!B#rkT z-Y2-p${%o~ugy5FhjM5Ut|IZ2ZZRl=5EOvjQ?}3M3I5jzeN6{2t?Kmz$^VARm!r#% e@R4SFjFr(mQc8f3DvJBA zxZ=LzhFbhkiad`$z#rw~dnakrEMWbRxpQaEJ?A~|S?1*LfByUnz;^thp+ulDnoJlI z!-l+ICJb}Pid)`<;f`8P(l|5j8QtSvzh}i=4P^q=XUy}a5jX7-xzT~M7O}g&ZO;nrtJ-w@sup5DU>&!g1~}3mTh?t36wSk2L#GGlQ9`UDHiDn zph{qI*s^6$DlsITK65B81!}^{s2LwH9ZT&q56iq!%N1w}&kuMz4WE~eH9R4(sVSWG zpx1LOd!)VaN$^B~XjkZ1iB)t*+EHg>%sY*aYSlsCH7 zC)A9OBpu5eO}IwK%&m^KSSO$ziga{tYuh2PtEiFxR@5HAdTi9NL10O)boa479d)Ru z6-S;+Sq|xqq&d7hw)UV;bXLf+J?RXaQRx~3idQRYdREeIuRx@*>er@nvV4> zb?km@tE`H=2o!aiJPX!oYo6>~4e(5vYmL|%P6#aW0jJo&js2#_ZhH!kYj`ZDllM-z zo=oUCjVDysNI8zQy*?`;BUU`FIxX9EcL0MJQhho~^-bNu0TocGV;Cb0C_5vyGZBl` zQ>S{Fbn5r1n)A!b!dVSx1lH&BMzZo`Ra1xy94Zp&!cY_`XU3`l{1TWf250jtLDH*aNbG z>@?%jj+r$3Brc|_tjqu4Mj3$>GfC^feO6HByCiJFY9;(uQDCXu`wbP*j(&HLEzGse2A~>cmr=T z<5=Y?&$@zLO7YuD@jL8Vd~oOEmvBYLdw$V+$#i)J@Bu#3@L{IK%uG4aq$3SQkZTNE zacM+iZT;No_*i}LOB1m+4W9_CEab$`-~c|u7aBg#ts;M#(D5a{;wSdJ8hs8A=S>Ug znTdIoub9qX#btH*R=N5eOMafz&6LztT*-WVd)R*kN}{ZrWpnarHWm2J9THeo03s6y z#?Q@+I)UC~%8AMY^Qxx>u!MV{k{{w_RHP37 zLK9_N8(OBZd>X4Go2PMaO+(8qY%0Yqv@Y=s;LtGAt%DTr9=W z4DcG?>o!8#K{j?0_%0vhdcLQY49IdULLd5hTJbf2W4znT_XO0dQI`T#&UVJ7lAUb^ z%tZ<)HNo2$9Gu3k zKr*7lY zAd}{~nir<%nMII!g486?9 zK2q6Fivxt*$NU{+^iTS*o71*&&5wN*6MiPfAl5J$cN1mCfooJ;g6sbE QSNz6R{nfDWJ8q!zUz#I~R{#J2 diff --git a/exam-api/target/classes/com/yf/exam/ability/upload/config/UploadConfig.class b/exam-api/target/classes/com/yf/exam/ability/upload/config/UploadConfig.class deleted file mode 100644 index 7509a26f109a65e607cec05aaab6e5d6bd1eb64a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2838 zcmb7FZF3V<6n<{9n{3m?mOu;PMM0`0P0NB7(3YwN3KZH>DO3SPHpy+XG~JDx4V1s) z50Ec>&>1a`&N%u7XZ$Dr2Nj>YyA7m?w$8MB&pr3tbDs0ub54H$`^TRFjG>lBLf}N% zTeBW7TXNlAv+R;nbArcKvtIM;idFX9WoN~@749yCn=~|m{s;C$+p5{_igms8K$Zi6 zWYez+WM^NVEC#;gu1xT#;`jo6cCF?;nqCj2+i*O$A+YCeH|x}j3~ni3d-H{E=Lc^z z-N0FsGwwsD;go7}%5}ZK4kDk~*_yXj@>Z?O(v`j)$O-{y7rct>0dbqqks_8^$CdNV zwUYF2+H|3Sdu6+}Wc!ZV$4V`zI>dQ$_Wx1Dh$@MTj;~_wGm%y?vs6uOrC=am=t6?J zcF=@@9(roTbPVJ>*(fYAr#Tr^y~={^+iNnAJ^`ycjLw)8I${pyyM$DpQu52DUE}?> zP|*WV6z*h*>Mav*&wJ`gXa8bZi;IFg{ z+bQ0}IzvbcH)iIhiJ5ZBmyKqPt)oSFw4pG*5qMGOq%q6t+1gL%n@+7FeFO6XyI*b0 zJQJME;2IW8e2l~Nf6j58fH1FN(Zo&MqROtb_id)&+XiU_B8HSsZ1PBsq|iNT}&VDWN7t zxN-z=?WF}fjCzy16nDG0zQ%uxvf!!@e}}$rC?v3(UuB{UvizEn0rp@ocWmx$9S!cx z5xaUDLxr?t**Lq9ifZ0~+> zr|#9ewA`md_ec1E+n_(NQ}^n*Tkeg}J?Cksd!aM&G?QE}4u1_@ds_Sz;w$LMr^R0& z=0=7$FcfYn9G@TIXIvZo4ZS(-Id(sRIhxZpP}sC6j_Wijj;C_EvPnHh_6c_7^jzu{ zqfwfS{s1eyq&;QqWJjr8i7>UEV;!e)h6xRzjI%7i1co?=-lL8`6`05Slr&t%DU4In zF^3{1D5Y?Y{*NM)HvYtGX^6itm`0L+2F3l6*dzKj-}y9|($o)ACsT|e!XnWXMGE%6 zRgvC;trM(*9aquW@Ethtd39@%{z08irKQQn+BUUTDyv7jK_)Gg@Sv^Eh!lL3D<6C=bquZqG1C! zvP=A^)Rp{cBs0%DYI~2L4cz~)`7jpeE7aug68GikdxmoN25TRE3CQsIm$AaNk1nfR K9fE(*!0JD@#Sabu diff --git a/exam-api/target/classes/com/yf/exam/ability/upload/controller/UploadController.class b/exam-api/target/classes/com/yf/exam/ability/upload/controller/UploadController.class deleted file mode 100644 index 5d7da87d7c494207c9a204dbf10a347d81ea07a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2516 zcmb_d-BTPz5brrYj)P4|&=?~aLp}s9$V4O&J%S-bNa7u&Ao61QFt;}xOZIlo-8l#k zR;A2C${59$yFyt33h-zvx}@WCKQ zf^(-ToZ7E(dwCb}PP;6}=Y@NNra5ywI?YTe+y%-?FzHZ1ih0Y`*ct{*+j1;9h&AZ! znj%m;EHb7T!dE zwIWyPA1rmfe_sSroz;S5qzGzD3yA+P(kYh{j%L=h zW%GcW1WqL_LA`mV2os9qQ7puGUa-O5#tuHozzq9$x_Zy$yFFsh_SY0eG ze!jl)5N$SZ-P`)|tE-daV+4-xWXv_Dm?62lgRqsUQ>hFoN^t5G;Z;7s`b%Wk0}uMKz!dI`M$UwWbJoPXc8B1fMAXW<-ys8=ve?qQjG!wely z&vH}l-oW*)?sUw2uMMY(f#y?XksO5i|>%Nda=T_0j^$cTAIJp=?M{4{P- zRbQJ+IwNJCUdE3aov1)=78LvRJgR2q<#B@ZgqneUd*;R{4^gA}>GP!N5RZpi{FBYK zHPt5<4H$s)x*i%9fsS2)`S>wwRYQf5!0t&0*$`-)6b0AhBgjw!hss~e9yO&2v{j)j zGPPE+tRAWAF(`j#Dse^4yY1&S0qsbZ8hqO$IHGa9qZCC+tqod>EW-ayfzH6S7I*f+ ze$+Oj)P<}1#ahS`9QYZY`w4{zJda-$1fUg;Xbqr*uR!2NaaFr@@yF0w?s8PS7`_3# z2uIP7ARmt*!gd|(xJJ~52c5v3lkWlX;1s-!@<|UmpwmNKakPx8Q%>U_1$7d)RjLQ$ zzd-ltW$1}OD&GAVUVDT}A95qE06iF;Y7EDGhX4b*!t2nFA)7F{H{eaQPN01qLA8R2 z4TKJ=SPI%;3EEpvp1``Bh!14tNLPA7jDhjQ{`u diff --git a/exam-api/target/classes/com/yf/exam/ability/upload/dto/UploadReqDTO.class b/exam-api/target/classes/com/yf/exam/ability/upload/dto/UploadReqDTO.class deleted file mode 100644 index d950a4878d876b8e148392f0e045385d5ad8a8ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2086 zcmbVN-%}e^6#j0qOG4PTAvV-lw5?#x4`8juY6-MLN-LTGLS@E2d6Qg{Et}nRvjKT^ zMxF6RU-ZEzpX>|c;Ebkf9YWgYQ_&lB$FM4^4zGy~+gZ~$L{YCbP1mS%$JGmar|T4wWk@VF zE!U`t6{BGkO)+g*w#!|^wi*nnykYB&4PL1TN9PA$^y#`$u*5xO2a?`@#FWUwzLIcEp{g;fQjOgkTJzig0CqhKtG6{~&$ZCp~Aa zccC52n|7^eujx00B^>UGGVxP#M7S3WPiRol!*C*RSYp0eD+=c(r^<6*MYV1`wp8U@RrdAlD1>sih@*mE#ley%dusbm(~ir?u!<#@mQ=R6SreT(a6UJrYe|UY8lIm0hmyp#k zi7CoBX;_APr9(m=J+&fTuWEP|)8xwQbzzmM_1)Ay!p$d<4I@Xzr6kgE_F#!@$9?cHqe>F&qxJ@|B+ zp|30&CC8}C&Br+!8gEk(kh?;+5bbT0-eI!zHV{GIEofwAa8HqBrQ!0J(}Z_{-=s^YvO!!hWRaPTuJxVflpO#8wBrP93=}AWW zN}-({`Gjl=fu4zGCzUBrn89eaO0tBbnY##$wlMb2)L?fx((O<`Z;OBbd&@|5$IxQ|P3$6mRI3CXsF yE3ugtuC;LE-v%?`b7XS!x_}={_&vPdeJ=kw;Q{2mRuuM^X`WzdnHI1}kG}z26SNEf diff --git a/exam-api/target/classes/com/yf/exam/ability/upload/dto/UploadRespDTO.class b/exam-api/target/classes/com/yf/exam/ability/upload/dto/UploadRespDTO.class deleted file mode 100644 index c820b0401884e66f082fefa2f5317142bb76041a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1996 zcmah}U2hvj6g^|FW5;n@$22LXp&uj^eA3}71J`kb-huu9HXq4Jx5>i%>`MnoxgH93Qgd|!#7Hf zD|Mr0`ms|+T{21_+;A;{RPmazX6Tk-uj-4QYuc*?f%HPd_ROkWHtXh!B`0m$@eI#& z?7BdIU2mN@ku}3=NP%NpKYq0J(>L2UKK=9N z2ixC$eE*BvG?o^M+h1*NfBn8d%$4snOjnk}tXc?ktx9i6(L0>Ub|QE*AUJEUb)c9k zT26JvxvpQ7wsZ|omdQn%Cb@11JeEKNT>^)SrY$cusw>jHVz5f3g;O%DWy3YqIdE!T z#bnu|#fKGr)Eh8gS3M}9FSEab?6N>|PI?umJa4#0ReI88k}j%XSTx%1Twb{*OI{&+ zHBR=&5;%?lDpoS=85OOZClfe;gK-Sv=_rN>z5AxE%LyD+mxR;)-~lop%JC}FC8{cR z$Zw2p-_^1YEP6)i`kYYKJ=dPV8UF3MzQRboAXVT=%IeqnZQhN)&*jw|a8%cJ%! zn3(6ZS}cke1&-{JY;Q`ClOB zhI36k=^tsFxHQaVOdI(fJ!$PX^xi^ZB&{{^lpmpO5GK5@%F`|Q9d6S&g=bi8A4ZX3 zO)sF_7@IDA^t{x6odT41cIVYu_#RqV27g45?^T+QPn6~ z|0P*uhgO7S6s-U~<4eXd;?=z`a)UmNpvRMiac#mEW*}LpP?lISe+$u(CPv?y80aiV zu5~rY8z%i{@f`C;nE82HA+}Z@Uhw5mA`Bw*fGTMeK?n-K?Ex#^J%{)oE!4DhU^>l6 z)o42k9bKXJZb4;j2j_2;+e8=YO_1nDFober{ t-^je-y0qY!&`8XBOu zlV*2kXLdfn-ai0b;v_;qxJXQ)w$F+;x=?zN<(b>6rpk>@mF0S!C9ED=IPXw|eZuKV zueHi``J$$a6(^1mb|k{nX!6U>)S2DB8NXiLPvh}_r)}lOMW}9xV&azF(xi8~)&)DR zEuo*9x6*qj%tjM$a?@Usvr|jwDs>~DKST`M@pJTQ%rR8}1NQgw+lSHZJu1*-v zO;aa)o#jk8`w`Z;w-6Etdy+X2NOnDhg8PDcvJgJb0fxKMAi#li4&@P!JOjtyjc9+K diff --git a/exam-api/target/classes/com/yf/exam/ability/upload/service/impl/UploadServiceImpl.class b/exam-api/target/classes/com/yf/exam/ability/upload/service/impl/UploadServiceImpl.class deleted file mode 100644 index a4dbd4b0bc001664d58ae4419f668bfcde0ab7ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5163 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 diff --git a/exam-api/target/classes/com/yf/exam/ability/upload/utils/MediaUtils$1.class b/exam-api/target/classes/com/yf/exam/ability/upload/utils/MediaUtils$1.class deleted file mode 100644 index be672b77c578be370be184a28b872ffe6b1a1f87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 675 zcmb7?%T60H6o!8%0~x~5l%Xy6a#4{&5LlI1v;wg~AdnJRgv;8QF^Q35k7hgw9;=&H z>Y@+OhpKuUsEWi2OFozHjOSeJ-+zAo0EX8!qp~kc*zu%02Kh(^jOs zbV?VzBU2?Vz4_^L4FSXSt+*4TAU_espd&Jd@qJ~KJ7B0bH?J6iLz~Jvs+fo{hVc-S z#CEduCd3p&Lu8p&iEzpqPOuJQ5#C~&&S#}#_|j~Tl4xQ2{JeK76Sw!0Y`#PxW_+e$ zwj1I-!^E9RrRC&OhPE>DtQ_`aej$2VGQ@402z@1T<^3lZxPdAdc>7g@*<+}8ZJ8(X zSovQ!{!eYkcS5CfRo@6#<`n(zY*>~>!s^*W%|z>ej*2yrg3BvZ43IKBi+EJ zHLNmhy`or#=+qdQA8Jt)vcM`$ze+Cxq~ULibd9VIQBP)DKM=O!dK`Vno9k8_$M3xH zjY1WCAQ>Ydxk0jtDYS@fV3tVqcpP(>CojMP$qE*+G}6oXIHD^g*J%4k;M39i3z*KQ AssI20 diff --git a/exam-api/target/classes/com/yf/exam/ability/upload/utils/MediaUtils.class b/exam-api/target/classes/com/yf/exam/ability/upload/utils/MediaUtils.class deleted file mode 100644 index 95cd8ff3c330dc2641719bb05cd78c75ed130bec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1335 zcmb7D*-{fh6g?flgfPe=;DU(AA_>BXf+C3u1h7&jLRF9|eX%-|PSP-$i8CFAKkygy z#a}?J0+%YwXFtmF_5@{pVIHQtPv3j)cKY|9?>_-d;Yk=FhB3>nnA=5DZ1IZ8^U{`T z+pJY>mlw>MlD2PVMM3iCdK*R~L;D7Q!%dqzC37XeAuPqvoLyQ>&%esfuQIe{f_v?1 zW_dM1w>epIxT<-AVfyH8vVIK6a>|oVDRB~cL>!T%WlKk@M+^<4v2}*Vlv@yCv@(pJ zp@5;uC=9e2Xh)RcTr!|+21BQTCY;mROGiAbRr11H<9VAh?##Frx7WER^*I2eXh0jK zpvuyx_?a^#K&6~736*jkB^^n7Nwq3+}flUv#-1MtWagQu*yAN5lVQZv}n$)d6rlvMpEj*vz*Yp3`W{3A=Aw&p`pczp@S_m--(_hOE7%%p4{tG%j(J_Pz^p6IY!?cc} zD?l|NJ)Zy0Bpbq;;(O>maMRI%zQDz(8=wal32VkB$|n>=en*+;*opX8T={^hc<1$9 z+z5R{JRWREcQLjLGxHf8W8ZK$g!gE#?;nKl3xhkI4|mADA;`3ciUelSfh79znDU*& t43>fvdg@^aog{2FAZFK&eNpVBLVW0lyM4LcXJ(#xX70~_e*GN))?s%RG6e4WGVpqB zk9BF_(Kuqh_I9|ht9CjISprK(^n`kXh8^!k^9TV5KHi$D+Q~q+62W2*Pnk!vz>E7Qz52O}2z7g4{a}pk$JYBeQs{MC(SV&wb?h}6 z4P&oOeJxebqeExCYNF*SSJuOsO&)T+g*+5X2L!U)vc+cMI)TLzRl7<_m4h3EWWEm- zi={YWEe8XMxUk_nk&?(q5N|kzeB+Qg0n>-F)&`qdeaKNc_s(hJf^aeSxt6RdnS?C@8^yj-t)`Fq zQr=h6XRL+1K9@Y)$46I6DbM;+N1VcL*JqIx>@3_PaAV|s<50=dzOVN$T1bn>I)Y%+ zCnli;9q&hG!&V=y=$`!EjLYI$1sE3?4kCp2aaY?1_SreoX|G>$8!ACVqxWG`Q0 zt=DCue746;`&k^dRM*rzfh&sKwihJ3Joe9me=5bK>DAsg{sm-+eYgTEfYpls;|#nF z(=dapSzMVhXLs{Z!1>%@Zyv`yt{31Mz87(|j<*Sph2LQ5hvns8;N~B=%D|iWHYfmp z!CUyA@1KI(Xa{h92i}1!+{JkoSMOR2b2xMGS&3nF2%f}z<**qjLJ5O>HL&B!U}f|%10TZLD}!|}2P5#&1kc~Q$lhmmzCH}s=w)(B{+{4rJ_8T&;^!9Z5j;+XoE-vwanVaso&dNo1r@xwiO-i7 hbPK*pfnJ(nvO573h4ZxqtJ?PyE6f7IZsU3f;9u~axcvYC diff --git a/exam-api/target/classes/com/yf/exam/aspect/mybatis/QueryInterceptor.class b/exam-api/target/classes/com/yf/exam/aspect/mybatis/QueryInterceptor.class deleted file mode 100644 index 00c25e88e04c059aa3d1d5323aa964fbfd0dbbc2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5532 zcmbtYd2|(59sX{XH_2nzLO}u*N*4%On3jSq36v#-5==;%1dyWQsqZAr0%VCO~D2z+NRZ3tqXNu>aPEIj(>QL=Xlg}YW?oayq8IM#HcyvWoGW& z-~RoUJJ0>=@h1SR!S6Mc2{fdftT8-b$fIV~Fuj~i`9^lQ-}EidxGgW;;da}XZc65S z$JJ0Fut^d0n@-kBJNd%aTqf_4g)eQ-a%_W-gO=?X-6k(&<=7LrBm}N?+(E<4nW-UZ zSfR9#$cXI}D9<>90?RsLySYN9g9fi_4j3JLl5UH@;-0+iTUps|AGSQJKO;BWw&Mq~ zJ%O5zjFatm4jQ*gTe_w%(Ep)*s@A76mTmdBP}RDXy9Fv*owQ8i3M|ktU*MXl6z?=` zlgjIO85Rmu4@y6@Mqo`{Oqte<>3Ju31NpD5QhpC4`1T7kO zcvt@c0*`!>ZATT>_}csSKx63MKGUU>1+J(o zAzQ;Lfwi%CMGWOpnaUIV265oath9Z?Bf8se+UbmRt8qP6Yq)`KyOiFQ0~y+;(xP|R zBZp4uo1wirZp0da1zX#;ZQj+k3yh6uKxLIJyB+h$!Hg|U`%oilIOfBJvYvyv&jU?;|p9+FBG*iVX4c;mT%zVc0 z30>g05or?Zur!Gc*rZdPl2AZ%-$8PLl!Kdn5oV=Z;M#@!FDP7ptlEhx@({Q`M)t6Vd zuv^Eg@fs=``e<^ciQ)wm|f+CQjc2o{NRrt8Vb#8{0jfre+U1E-_J2Ca&DAO7$TfuByOV&UI2!rdi}IyU+y$t}7AC;wVtq#?COOSbw9c zD{xZ@(rJ`y)n>BABFsD}!KQRdvawD|Lk>_Ss4tU76g-PQosc@^Tp(bayh1BGbcu*W=$%QqUU2!PQApx0yhX#^0!uFiaOCOkU|`enR=kZP zfU0)_9q|}nzP1))RU8vbclLxIb>H})6|tq=#8$WKu-W*Qq>;6e@VswjjPVyOYQ{WKSJ`L|@OO5%^8?s!-=;eIiTK@1Zs_NqCuLwa=hT#yGcy`K!oll*Hc-QZ6K1XA6eb{8-{;3r zReVJ>&kR!93w+g{Rz>KOI^K=>AOfwRHy*o%zho(E%WdGgzwOEZarU4=iFT zIDqs>GcDaDMsZ$E=Z`ZGaeE{6Rh2!1uju$Ho}jw}Il&NKU>34rR$i)9v8ImCv@IIO zSQDq(>v1OGF|jweB=IDk*6}rbop?~N4_3E0>0yBzi2P|YQX~}qtiY;i&~#_m9}5~h zgKz5imO@*V?}TnqVEnd@kHbph6uztDd+KyEJI93agBsiC1_&zmTmo%o7@a5})S!gg zmk%H_ArbmSwS#FWAL_08P)HVf>-y=C#_U$~y-uEo^KF(o;?19YUSFjUz*-s|jdzzg z7*E-Kql)fPP~~BD0A}`<=yp*D=(PrU*3Y|=+bjHFE=;gzv3mu*U($bMP{A(1`W{sj zriZ~JwjCajNH{N+x9UrPI^1I!V_D8$CCac!9dLPH&2Jb9UX#2o!VKuVpUL|&%;Nhh z%)wl))NrMVSM^t2BhF#o8Pqk>OUB8R zTwov|QF6HfS5Zqv%wdeWUd#ImK3%6Y5KVkv#gzjMqgXM9rq0IGFivCb1+3e97A@zn zerHq7mQidS!}jKi+KN%^Xs$esowbz@VNK(CaN-@stC|zFiJDoXc};uai3FYVok<&>y1 zMtc~M~V>7QR zT#1JIb9l3|FbrZCjYk5l7lb>CS|@N1?Gy!;_XI58fp>D7V!1Y8LNSwL`&f*dC~_0H zmmVu}yEmX_yW^7L=JBc&TyhTYJ&*eZp2gh4?HEoz%&%u79b$yL6l52(EQKMO#Vatz zm8U57>6qvxk?1SQ_oMh2DU}OnpuBdIhLilA;tQ6z$eg>$sDc|76Rw}=Y#ha>b~c^E z!w+CaL(QzFQG9-c(hI;?z#st^`Tu$5!4HY~AE6dM3#8YFY>I|24nnCCZ~;c}D8(hY z|1^VI9%&?AL@iZPF^s}@2f3H26G^1pAILMowdM;rL)1Uk*?0k?dx_(7qqs1JCwEf8 zr^fJ1m;m2suB@-EJd5X=D{Cu9)VuFAD9=@4H9wjZJhwb31ApY|pRf>rCb<5>1IJ(a z1>|qs^>>2&AGjGW1~zRc02PSBL{)besej1vd3>K*E@T9LKu?sDPYu2CV`^MSZz~vA zl2=6#gV5sn5HC?gc>v@68XGX-e5zpk#lZHT1pj|ZpMohO@N@otu@7PsUZ9L$rkF*) R^6+c?W*^E@_-zWm`!`U5D#ri- diff --git a/exam-api/target/classes/com/yf/exam/aspect/mybatis/UpdateInterceptor.class b/exam-api/target/classes/com/yf/exam/aspect/mybatis/UpdateInterceptor.class deleted file mode 100644 index a528f9912288c41d2652c423870dbbbde5bb813e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3370 zcmb7G+jA3D9R5z5X47R$u~;yOS1u-PVHFgiMKqQo#kSPmv>@tsv!n}~-LSg>>J2Y| zB6z>n86SLdM#oWcrZVa{I^#H_55DmKh~L>HZPEsmhdp~Pzw^6%zuWoipC5k#a4%*R zGzfH=US6L$tXn6Iylw;q%MA7W%#;z@fj(Zy8llzihL&$yh0yaA!~}NB8&igtx3gZc zLR)Z(0eOU$8`z$!PaAI5vHU>KOa-BDnBnL#XV~xq%imi%Q4kkc@A*01C>Z9nrQ0Qu zK+vx=u*%ruwud75+oWnVY5JjB6=Mop!zGxd4Ve0B!j!LMZrCE^P(dS zTXAnm#odd5 zT=Mi;6w+JujPDyW*bSzijD;aX=G2WfV3t!+#Utofu$Qn!e2O$gFS&#E?8Bq9$2wLt9D;aPs>&JV zC|{l=(kh*$|)rN(JVLV1r{X?UDBVz&`*Aq~K7?rB>T6-N0(+5;!Frndb zJVE~kObyetg20XnLo9V5J)z(LOGIRUaLmzVkzsMl7gRinrxYBjiPh1WfN7!OX*@&F z%%blzMdX!1+i_$)VNu$rViHrb8ksClseS1Qse`5AFmfcI4*wg?35lky;Yfr}sVvH( z;AqIhrGE>)XIfTvv40n;jO|v+kidpIxXzdG3K>gNtIXc25+Kl7=Vm3v7u5^iUrror zYD9Cv@EL{dOtl?hUd`p%MJcNWG7X~)Wyw7(6S)+}P0?H+SrvOVkx%(8EMDeO>J^oG z1uxXPFls~G8nnV`FUv+(QjN}wm(UQ{STB^SB$gFd@JelQDECF{q-7S_f%U%fM8#>G zRd7b&wxvl?cENDeOf|fQ*BLe^e4`*RP)CnCu9$b?eDAN{bK;@lvm%rdVc7QwacEmK zJXw|#6@Z0<9@$`3#@IaJsuBo`=}0x|75VPiW6OrSYROwW;Um zl6223)?dWHra6qvVog$^gz==3jQxbk$xAr+1B^Lj+gi$`o6Dr1qU9o{uYKusLbNB^ zn?JvDp6Va{mS#0Vf-(|~&k)lr5u7F*M~S?LE)>{|kD(7m?8QkO!VD>%hl^8Oy@D5U z7H{J`W;uS1_wYSF!tXr!8=pl0KNZ!Vttwra2dx$72#bi!Wh%5(gq@3oy+L3~!tUc*3KNTi z{iiCnED}+$OFb{(O^#*NFGRQBipIC`4*wf?_%6Tq4njPH_o?XzCO*VR0Y1hj2hm`{ HH&Of-Ag*=i diff --git a/exam-api/target/classes/com/yf/exam/aspect/utils/InjectUtils.class b/exam-api/target/classes/com/yf/exam/aspect/utils/InjectUtils.class deleted file mode 100644 index f415bff9f5ba234d58f8df31087fa2735904665f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3287 zcma)9YjYIG6+JEOYIc_qh6UMCuwlV3J%HgU+mcKGS+eCUlA@L5V3Od`swIt>omtP! z3W+>yCpa%V4?hwo#P7r*9|2bh2q}L|s`4e3ACdTD{y-|^bk9nfb%C);nx5%u$-s`}3{5iqW!LeX=m`CEbWRDR2K*VBLo4nwuuesucNHB^j?^mCGMKQL zi3;B@+wPPdIO@AT+0w6r&!HJ#GI2L@Ody(fnC(NwFM_#3Ae7OR?bhg`HyL#de_tYx z`pl`sR4EErhdu>dZg8nAs~T$qJDABj0BaHz=S~y5a6kPLE{zOTJ313<#&G2b#)Bpv z!o#uZkmJf3fg{NfW6gx=YB-6hK+d{~ZbOcAXZmvJM7M!1fqT}&Yfv$<8+!y=iOR8Z zS%#WNM787D&M9SWnb?Q@WD6Ap9!`dHTf`JREqbG+ubGcw3v zn56&r$A9|Q%O8Du;ryqUZ~W&k7jhWFR~4;`Tr-JuJzrIk5sVoarR_QznieL$hH+9S z@>kQ@+Q72<63WGdiAksu+10A_NU}Y*@|8feA#!qR2xB>%#3=*MuJXPycN5=GIT%$1 zhwG`Rzh&Yyo+Fan22aScYX@>hbM(&c8w;Al=CNSF5!ms04N*74Gb+`z3<5t;iIN(g z+V8DQw6wM&HMsJ*a{`+a!0O78qJsRclSm&0YYl|5Y#_sEP^~V|9cQ^@g)&%lWn|4q zQPp~ik5W7_F2gFDzhs9puqbeEvMHARK=MR!tYcM&icuCzIA>s4;J(|bX}>1EjqeC- z92_4X9Y4K)-#-5CJ3wd}T5fW6ZAPNh@I6K67l?Vs9h5t#GI)t7O->B$d2|DQfR_!N zXI&M|@0_oRAF3*BWs@41=l(5o`wn_#e}>&UgCCQ2#XvwRDWmUZFS(0NPZ{{yqmBa z9$ljhdjJ`uSs?I*`NF+KW++w&Y`<-(l$?~zmHb*zmgI`$Us?nbHgEJOeY9RfH;9CQJg~78Feb~t}v6iYRqs<^O=P@ zH#hLBlcV~{=EXIbA0vO6A5GZGr!r6qZF)v6$BRSV%;Kn|>8`7|=d&i=+Qf_%(9S4; zm#_`@GOGLdo}y&C@-8-WCd-+ldrtNmpY*ge_oOdkZ@bZ!KG2)$>Rv&iJ#`fi^k&*K ze?!YfY--P>R?yL&>E6A9z30=SE#21g!OefF2%2@!yL66^@cl6q(2ob%_BwbT?d8F9 z7?0p9?7}LcBTSEe>(QyV130K7KFaIpK|-MB4x>k}yOWlWGVTIxA44yF^if_y>Lzc1 z83V#Vv;OUe;CnxClUZkz0t1h0kwHW$HE(U!!~lWTW=5l~#b5-g9K7D}sp|C)Mv>w; zc?CyrVCZE2sjGOJK%H1YX$8-$;Oh#SZ(bU?g1nL|(KXmq%1f$Hrqr%ut_c*me?_Z; z+1*W)FNsS8pq-`J!M_;J?V37coSoq8BmtPhah$?1PpT50(@=KB0j)tf2_IDr<)ntK ziB^a4JOZw%U^CHl+Q9bz;vkce6p`kI;u9m*UvxTBaUjz{1Ny+*0VxV diff --git a/exam-api/target/classes/com/yf/exam/config/CorsConfig.class b/exam-api/target/classes/com/yf/exam/config/CorsConfig.class deleted file mode 100644 index 90a16fc82054dd2afee285dbc2458123c7f4f893..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1843 zcmb7E*-{fh6g^EM6XGZu1$V(c2}`3QE@2TOu7OyhDbc4%rV~ad(^k&}@Xb%s7f>nv z06)s|_6!9U84zE3ncMf=Gj}<^et-W7U=+^{bTFK&$tM3;=VH}r@|yJOPJspU=ysK6q;%;=O`OF!24mTBTcTWN=*_;#mD-*aG*F+3eq3NU=8It3b>&J? z30qK-ESGZ9n~ibHRZ_Ub!1CJviixYZM!jO$cIYqcvT_=Z$I$b)^Fp9&R>)PfQ_e(w zhtp$W*+OaKpoyU!#yJrzNjn8jeaG_@H-qaYZr~i@a5`HV`6g z;1)w6u0;FnI|H{Fa&Z7UZar-7aP*?KO=Apq^*G&QxSRb?zENw1tjBlh&oW&F3yp5%|-v}YiX@>r|+|;BJysW4xgq`?A!ln5)Do;U1cgAm67Zu zpxxVnhV=|HjK#voC{?88o2pa51t*kzUhk(2dj1Xg`o&N9s#xPSdK*z-1hy z)r=m{eu!=ihtW+SM>by_rCkGkBhV!6a~sGkuH$%V13k2#m>W!f#mP0CAIw}_!{usUW_WN7BO4f9+`!o4z&h?EexR_9iTR<-%o>VAp9!#ost?i(y$&OV>lAtvCvgYo zF-{cklkEY0eN639!ZVaZ()ozYCg~K}9?=WZDoo%Bo)YRTVLc;{1fA!?IP+USRR;b5 DX$2F# diff --git a/exam-api/target/classes/com/yf/exam/config/MultipartConfig.class b/exam-api/target/classes/com/yf/exam/config/MultipartConfig.class deleted file mode 100644 index afbb012c96f71d0d3b90c43c80d09c0d3e5e4462..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1048 zcma)5T~8B16g^W~T1pit1+Ai3L~N-#J{Wx{njp%9Su_FD#K-A+TL*V{a61ddU*ONt z7ciRm1N>3OJ8eT^t&x40d++X@bI$$PpTEBS0Pp~JvPcQ6_$HLcZAm>9O5a3n-H|&< zVD*8D?N&d|A}uhxuMU+ARMe5LTKnW%fyoUWY5PQAqFQSTq_@ml%3}gk1!OQOFyrZn zUM69S;@7GbkU-Hhz6zQu)-E2tOxt(5E3oSQUr9q?G5k~9^MFE%SWUHB^PI+>>{5If zkR2^!n8_IB-6XO)q^9m_*0C8y#wx2##4_%BCho}YL9C-rJ60hbnfSeHjHRBH>MT`0 zB^5QYm=|b_yU{Yn$|Gw1OU<_Ot%;BGC}JwZ^WbOxQy!ObC5y7a+BnR_>OdykbNNhJ zwWmK)0avjkFm2j9)KRTtOI$*|`l2?riofqS9RKwKmT^PiVwdcW>TT44@2K)duIp{{jU?(3}r)-WTm;K!sajVzf!wmoQxz~iyB=j4N}DRN)fNg>at`wXso zn$N-@f$as3xZjxJtl44K99svZ7(T_e@*TxDrzm;#5*EJV(h07ed6oJJRzGvnfTV~t l`}dKUj?&8BWf-e0HW|_@rXvd&L%xU%vJ4XqrR93) zwxs_;wEB{v+%Rp?Zwg;U{_rww->QINzHtXqcw$g7)&l;bBR~GkWiohdw z+)WhlX9p4pWcqoit#V~k1&V0g)7n^4Yc#RA-Y|ZT2cEBVuj>m}elY&Ks4G@(TP}Wu z^7~Tg=w=|31!-el-?gq0&;3`>W1`Q^b3YRxRewL=R3 zky5}6@(hIy6Vh-Wsd!=bEn+>|L55rZI-_KLLqF~f39H75dz+CAd32_0!t*L1?Z4C>Wt-Hn4W2ikvnO`wyKkfk$69w*DlW~w`IKG8=C z1v;a@fdw3+vzP>sJx(6OI3_5nG>n=g8v(5oaEfes7vgRBts*oaF{7ao1bQf`Rb}>VB=6<6moF9yEc7~`a%*Pxq T#jMMOaGCrogtPDlEWp*DZgnoN diff --git a/exam-api/target/classes/com/yf/exam/config/ScheduledConfig.class b/exam-api/target/classes/com/yf/exam/config/ScheduledConfig.class deleted file mode 100644 index dbc7712968d0628541eb2bb5c5d2ce28ff52f699..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4178 zcmbtX`*R!B75=VYvX#YAoChUIi4#n)ql8T$C8RPgj&MR6IdN>q5a@$z=~~`+wJUa4 zevncMv`{Fo7HH|~2Zmw#Q)ei2L>hPc2Xy*pG?c%h)9>zTt@R^u3f4%w_i@hs&N<&X z=lY-jz5WjX$MMG$S_BRh-HN$1W2!}2F^jGa*9oHfmYis3+yjw6|yRMu*sRSKAO+tSIh!O%F7At8Lv5kRZ(Z1dCRw^Z8f|C z%@^n?*luOooiooUM|m<(C5m(o7H!M1f+3#MKQJZGmUl}kjcwSTLXW^bw>ouHI+7%x?J4P5 zdfb@o7!1Lu(TcqWcB7jH1hW>c?JH~^blQJMApN2yj-M`J80Kk(e8Q5DR(CC1F3tpz1_ z!J)AZ37Nuu0>hgyY;)9U9K>GzbI3pzhXuCyD$uq~SkKY_ZT)8lraE!IK)d$Y5xw)M zfn#_;U^{n4zBo@jW1gC^76o=DNiY%U1j-FeX}RMDzNJstO}XI(X$6zYt5{B$L=%co zOTONA!ob5gNfL6~6Wn#$B^mrVf6~pnm8z`*b-|fv`lA0SP2jFZYAQxEzoDlSxx2Yn zwEv|}$&p1>tOYK$KK3;@5^Kq&@Ew6iziQB8HE9g#m<{2SfxPzUR=O(hdMb{aUK=rR zTCZiecCn^vDzD3k6)fq+#|@m-i#mkol&TKf*1TGY!4S?FDCqTWu8+#aSZ^oJHWIXfiNazo<9TXJbO7~8-g z9ueq`68YEq+2yD7HdxnxSko}xS5(<4=*BB1J8ox`p(&q zy6g6`rrWYIU6OrAbqh-LPF7WSK{vcyVv_aMW=fcmTXIh)mZEzL&uP5zx2hQ zKmPaf@{QL&{NlAgefi-VH(tH|pSM2Y{EchZ4)<1+@3V#XUVUD_>-G}9R<);nzHY$+ zmQr9b-*>BvKzIpw4p-S5l;`Ohc`j*0qxP?dc{?*u&X45n%)uUi14$iBsQ$^ zlt9W2FLq?m_6^*|nlRzk7}wL5zH;n{Goo=xykFBx;Gqrq%zR(lzw?a}5cW0Jgux93 z6YVH*l^k(&)EfYF=M*^ce~X9Aq-5rl>jt`vR3pl;yS|2Br0_cL#?5=0<;=Tt$}EIT z&JSFh2WPlrzk@6^i{Jw(g&ef_(-md4tD#6L6>MEMw{$g}w z@~HK)jp7jA?i;JR{Y+Sa%5Cky&oiJ`1b%72gU^X~I3Zx1b$D40Z?MWw;nxE9u5;K% zW~cChz}>grO3p?;O5yhc_l29+wzB9}rMqri#Td=CZ4>(mycI2IM~ZK|^%a`WEv!5p zd>VXq@^c5eIoit60H6A=t4CZz<}>X23kNOu27k2xc$c^C?RX4;;KJ{w*q0g~r zt;m^B#E3TFo4A`BSvJs1#ryfboudPMzsE-(?tL1<=b{F4g_A9O9$3b~%b%makjEWI%r$);G2^2R!(5@Ek?>JI1r>H&hYPHg{xl)o5h2T@ zb;32I$B0fF+5IVY^#q5qhyRB8b~Now6E*M|sr=W3jotVWp69%d>5u7NeSSB7f)}~F z4KH!jLWf5&Z^chJ{u#fo@cSyinzC>4)VJ{~yo>iZ)5HDm<2Run$M8G+0bTzCBqX&K diff --git a/exam-api/target/classes/com/yf/exam/config/ShiroConfig.class b/exam-api/target/classes/com/yf/exam/config/ShiroConfig.class deleted file mode 100644 index 99d236d3e8045bc7aaf93392e23315d46ba5b39a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4270 zcmb_fYjYdb8GcUeM6x21pp@W{)FhAu%eJz$Y1pPyGH&LVWg!sgvE7nD zD(iYB!?%~lmyN7jDoJlb;Mjc439O2I)mgQCD{sq5$8iHQuw2JiBDPz}yDP@a(vhAS z$Rb7JR|>Y}Siw~)9!xI?^iH`&nZRQ>7{dX9C$}DR-7EyIS5M*)9vA2<$sjyl;Pha& zg?7p|eSad|iLws@hm+WgeF6uwmLq3tmAv$BnS`s&Dwy_y=~-$VP42s*5hl=s{v?hd zL6kw+qDd#R-_Icp-0v$&uUmE?J%PJ}8j)Ew3uS5OC8JUbjGQdgJS(Wrn2xEq41sUj z=2tz7ZdjA~&`Y7ph>mO0ba>d&$N>vo=+A^)Xe~>gS&?h5x1#(W$o0T5o1QWvU3*te zyGBZmv>DKLS`5z!WZKO)^Oj8$BCDomI{+qd68-AubP{Lq9NG3|u*GtL^lm9yh#}1Y z(LS#QmTl0RE3){C>6d5BY664kk7GojKa6m*Y8igrH)_80492kK#Br9MG#%I3kDp;I zhEajXTI#4IiE|idWL9eo{EO}J6=uUkTf{{(>CUM*E|A79C_Gt;_~I9m=Xb_~}99&cIGq-9dk z@)C_&UJGJ)S>UpQ zQ$C+d;&ml-tSK~AHZ5mbE~(^Vg`f=W^fxDhz?t18jDWEz7k3OsW=l^+9~nBViJK&n zWM-=dbR_Gx7le9sqbQu;EOw>M?YTf@YI|%%Ggo=&rQOM`8w}G`TLwnR@Pv{*G$Vtu zTbwgh`Vt{&XF=KCeY%>@OVh4&D=4axsMmH)3MOz* zMan&xN#s#rm8a7+4uO+h(%VxIjR+{ynpNja$Ej^lb2WVzO;6rTposn$$^z%US3vqc zLoCOegXQ%lRoP7T6DTR1C9EW2qry_53(}^&j=BhntP_KG(hKT1H;F3V5qPR|?}lE1 z(Joeob$*lb4FM*LqRUSrK#fI6sczaRaB4ek%{^2g5UbQ9lF#feC7jhwZNV8-1YhtLyL|Um>rDX z0$c7sRpDB9?}$S?}tn=48P7o38~j=hnP}j9e)2NtZy~IoP*?*~a+WhXhCa zIZCrte|;(OPb9xV>T3@6;3xc50>A*C&@)OM-|Uf?!B(yA9r_keZWTG9MUvqL93=`R zd<@5l>Zj}<;AnvVPrn7>bTpB9 zgqtH@5m%3<gYT4b*mZ&LC|bM1C>?GD%8 z;@V!uDI4{Bw=322+T~wTg`#@2fqS(57n+-#pKIE`Xd^X*d7m&J5ax$k;fYYBN#H?En+lW|gXu3++2;5?j3Z_9 K-d4Zc8B z)ERZ0(eWpTaU5s-&DTuI*ctx-{|_F2h2y!q+az_GmNJ>_SG2?>eIXIxFMZq@p^ZuTm8hM{xC zKD1&pwkp^{<{HZi>2NKgOXU(*@hrA6w5G1~4Gj&BT<>DgmOx+;4ZTss@SIG}^9)_> zD-`Y+je_At6)#~2B|ffj073`-5ad^S+l)j}f@{4#uu@YPv60W z+!FygsN%Flp`}FH9SQ9j6=$)YR(!*N_``br5N3|06R{rxLSXUO^r#)&MK%@rkIvQ*e|QH-HAf~!>)dGzPpqq%$Y zEHZ{`Dz4)l!rT?E9B%Wz`ZKbc&=p!GJjRe#VMxtuGTbq2QIa4lAQO8VX>-EF(ZF_f z!;K(EWj3mt5zwgIoOj)lb5!$dI8n~#3kj3co(V#{v*%#hG8L*ny1*NKdyxQQY|G-Y|V z!A}eSWV7JJl#oSEE&inE35uIeU0%T8)Y!)x&*p&syB6^Opec`2p$AxsGe=B~LWg(m%iH@>$Y1xM(0!QT23GvMm}xuHX(aLtQk()pgRd zx@7aLn4!FczF;R&)harS0?qV9$40s;^rq3B(Y+-;i^%Wv(1a*m{)8;J&{+t5nSX>x;OBl6gS32Z}=BA7%6Jev5^=%(*A*A9oSHOV6r zIU(K2hatr0Fg8AmH)C&A@V30@bI6Rxvax*Z#w-dISTUypuY#GH2ir*&xJz2UAP>GI z%io|4-;(vabynk{RY?9{1dtv=Spu?d4mZbR@6qprS=_2w2_U{#r*U01j@u;HgpYiX Ww^GLL(EG>q|AhXZlGeKpKKl=i@x8$S diff --git a/exam-api/target/classes/com/yf/exam/core/annon/Dict.class b/exam-api/target/classes/com/yf/exam/core/annon/Dict.class deleted file mode 100644 index 45134fc48060562146e199fabfa596f89113a5c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 503 zcmaixO-}+b5Qg7^xZ)=$Y78+N4+Jmv;?0v0NJ#J_uzK-SmVuP)cFk^=z+dy=5Aa7B zr!jFcA@R_3`u3T(GtWE%+s+r84Qi0Q@XP2tDyn6JJ<5cY9^nmZ8=ar6xd3WdP{ diff --git a/exam-api/target/classes/com/yf/exam/core/api/ApiError.class b/exam-api/target/classes/com/yf/exam/core/api/ApiError.class deleted file mode 100644 index 262765c5a054b8da297536b198a5773bb2c7d154..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3809 zcmai1TU=D<5&s_+IA@mwtOrGnmqep-Qvr>d05K9ImI`RuNVBnNdRR_ybuV~WY_ONG z#tUAknm|OQMvM`n1#~g65ta0kUhM6uFMVb&^d;|oXgc4wM_3mUe?QsTnVp$$=0Eez zd_MZ$y@vo^z&}MK30UUvx(nOhDb(Io-GvUXt`(}y&cgC$XQi%tbrHz|GWM&7)Iyi) zX)3Jrw7Ny43YgDjPH&-2)19izd01_5X{1_NSGTL~?c$;$`d3se;MwZ$^k152vLR8h zF+otAs8Kviu83NUrcU zY7#^VD+DYLojnrnzC9W23>_N?cYGANGakBfdaCPUba?pd`+f@qJTGGvRtrciGu-6n z&JL_VThaPl)eg8~!cr0|R<1y=JHfv>= znTh=V<$-T?}WDHY4GFr_pJg!-b;<%gjM*QRcgKY!$^e>wxEx>-gV zQXG2PY@`=2k70Av4u<2?W?8j*CA!6r4KI8M@vX9X=Wzx@QEiO-4FX&5%$* zc}9o3r>^xxuiXlDT%EdjoiYnwxEdbmj*Rz5#s{PA?~{UISt%ofS!PQ39+iMF3HP21 z4}L<)MJFyt`_4oz9eu*!`!X__fmK2c8AR{i2%Q~^1B8JX=^Kg;(XkwyT{5i9V4j3J zN+V`Kww;gYA>So6-Icq9+4}Z@UbI z8DvTL5g9~=`Xc9!htBsHhw!8)Cx*gZUl;~ImXXB_=1Wi+P&|49Dssag>7sJ7=%fCw z$jJD#FT>IyV?MK7AmJSW`Qf|cp;H576YgNyM@L7dQ4Za251kv1+`1Az-Dw!_ld*sq zXG=K1I`2Y%EPJvftO>5z$xq~gs0V{L!o_3YZ_&I(l z;uiv}adV-q#ivo!@1dRUx3|?NU_tCq8pFG3X834wXsWwZ#1R1t;|%#gd9~H)YSeTI zM+FEu7Wi?T-S!jYWsXapSI=TUDdQAQ(;V@rZkq1%bMt0rDWQ{+i_LurX9dt*J&zAX zeDGxSJO~+G=oTRATC+=akjw4yXIJb~b(?muRr5Hs(zuhJkk1hUOXh-%9$chI)aGW* z(ys!^+&R*H&N-c=I9ct2H}uy^Qn#lHEJ{OD-oZGtO>0(ns1-C zakr`y{yt477h;ps&|NcJtI zuVOxeGQPk)I*+&QF1nN1xm9x=NXhy3IVrO2IRLL>TWCpLtHS|F0Z@6d!TTK=FxQ3r!`UzCVa`7^S%JfDvjP8t6~k99%HJIHSCwn%fKYnkmXL^*4&DrEpeXTnEwj(ZbW?S}@ zXTVnD{Dikz>9%6(Y!m&ZK-spKZEAohZC_4l!E#F5lT%uaoYLOol(rbBw46Alox>?D z6i#VRa7yE!QyS)+(p=`0W-X^QX6f}wiwcVY>oaWF63?Ppie)5UPCx#OVq{A0aR_$h zS(EbI7*>v84QF$cl|0TCaCTjavYxX=oZXPBY~<`F&TbKv7dczP*)mCanX|8Ow%nSk zyvq6QoPW(KDmyq|#rd69NvY<1E$4Sz&B_lrZ{z$Pt3|2j{2QEq)0(F2<@{Tmf7>c6 zKjC}>=Nql*ipKdS&O5Cc%6`tfIPbA$8p(LA)(4ckDS$OLdvX8;HhW3{MK*hC0Gn)f zF@O@AT?*h8o83yH?Lbl4r4W~h&8x`9Na`M z?jaA4kdJ?(0RO>y{Fh!FKJFRRYOOd#XHbdpDV3NNxjKlS+DnojZZ*B!kFv$dOE**p z@UwCF?aKROI94!<4&{vUt5KXA#Yf5|`Y5=IUiSS8eT?GjC_XuwBrILl_sv%<0~60c zK{9>cLXVdhQ9*PkN_Z66bUK}h0enVOK{3TFQPbTbE(=ND&?_%R#BU%7A_hUmL-a$6 zK>Dm@hjBaBpo9dwNaP`ZCcYr<1Tl7-q%jmzxkfoZSB`08oHu_Gn{4Fa0qHU=_TMpv zNioSxM8*7qrDK?wDM-v!W}GY0aK+*?C*ikN;CJ-LJg=U^^EQ$(MC6#~{B@tBH_^Q{ z4k6iaPZs>5nm7>Yrs;zg(VNrE-Zd0H3w<*clZBogz(M;?Q~pDH8SCE~(~=;5zcvvR vfgi<6VWuJaC!;0ui84?vijW_~pTC6g?RG|8PPMa~|4K$l_#6Jt=|BDtrQ#yA diff --git a/exam-api/target/classes/com/yf/exam/core/api/ApiRest.class b/exam-api/target/classes/com/yf/exam/core/api/ApiRest.class deleted file mode 100644 index cd876f7dfa62d66c152b3bb345290d959fac7d05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4051 zcmbVPYjYdb8GeqmE3NHKP)uyB5-tvDD_b^7Qb>z@AqE^Uv6IwxoDgWsTH45)$Xc;l zIZ5wDy1=j^nAVIJFE7RQ*)Nf_Ee?f`j+pwm72iNtmEct z7pzjr_HtHhN1B^+i+1^h=T>dczeGLynpLjb0_OT#SJ!X8eXDWh*5yA6Xa&j%+#NAJ zQ}Jyowow&1)SPKy-=`gj4qxTIzx3&(!nke z2opUpyKyh>OJa|}t`=CK$0qK_0|Ln)(&J|Z`ZF^_n*=6x44T-BhXfLI-YU~tUnU|M zIxOwqHS1LDWA)W#+gr4l02!HEu*yr8=g4)))ch5PTJE3SF8z$Rzy0u~YE!{O+nyXJ zSd%=S7K#P{$BAuidz%!`C=bABp0E$6rI7%T!xDfgf%`fDh>CXMF!BNqbUGE4Vs7pY zJ9VbAwn?w{&X(QPW%qpUX}e;3mTwn%MB?~V&@S!Z+-?{>GsMhGke)S>!Y;yD3*l@l z*bvR3CF-Pr%1wW?q?=vc6j5f|lr*cJN)j2Gl|>`4U}8~riczpC)3RA4^PnuJK}j8w zkLOGr!P5f5Wfon3#by?}WJl~%a;ww5}tKkvKtHt1!$jgyBJ}moU z$AWJa&d*uZupNyRtG1$0;24>a-j+-h!HU&S%+JhC)7Ke>>Dje@zUcdu zX~TCFvPo10?rBXN#eJggl#8}!fZ>{)xze8u6-;!)g)f_JR#IywF5n`qS=FjtDYC$$ ziD{-TGJe{$j~VzWvpVvigfh_lbE)qa8`LzDw~d-#1!`nu69z65fg$PLD<&$kPrDb~ zx>vA|IC91{qj^|{ERY#r%tsW5wkA7S0)uzDlb9{@*6%-Df8%|1y9o3Y?OMTeg3*OR zmXo|m;)uzqz*Ul~9=;9!x@zd=1}}neBNc4KFOS7=_r~M9v6Dyo z(9h>R6nTb1f^T#91_t7v;ad$nc%ADw_VFq010(phlu&Z`4!+A(rj0Yim0-TJ)F!o- z_>S@2H~c9^hO-UiKEZ%|Kl%wC`!!a9i1*+{*srf&CkJViWu0v_C=nleGW%miC{#vwhBc+JB0^NZh9RmRL-Y zmMH2(__05ch(eo+K&y8^D>({UUORVCJ@8Fcb8^uoRW8qL>;23(HE|TPG_etwSwLjBgC&WR$422vb&8zIC(^o3otxr}IWSDTRzsD48~zLYf>fT4cbeT)&_ky`Af;I1?byhl_ZgLnp=) z4qhNH&QVjqk4R}O-Xr)iDV<3_jGvH7pv*D)BB>-ie(PGKj9_*s9Iu8Iqx3FQZ-M?~ zVJ3}#V`mcLKj=>)&Od|XfFir1WE1!^1YVP$2c5vLXg7!|P#>TaYAf0?s`&NHSsAv(yk z$b?ODDz1{!BjfyJm=c+Y3rKuL5sirug5dM@6`!qjOfveQHwBt9T01KgOGLz4k{h`c zrsMn&=tP#z(g!+r;B&ao^}h5eY7)f;>b;lvkVrT1v)*4S`n05fO}c@Xw;PuSLeyGw zMRL@z=RYZ%xG_a1)IGvGb>j@#^|kJiIDW%8Vt6&2RIdeJ2XbKkmRx>AT*2@7_#Xsj B>u~@8 diff --git a/exam-api/target/classes/com/yf/exam/core/api/controller/BaseController.class b/exam-api/target/classes/com/yf/exam/core/api/controller/BaseController.class deleted file mode 100644 index 13520e8b9c24259e6c8b6b39021f578a0e40ebbd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3840 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 diff --git a/exam-api/target/classes/com/yf/exam/core/api/dto/PagingReqDTO.class b/exam-api/target/classes/com/yf/exam/core/api/dto/PagingReqDTO.class deleted file mode 100644 index 1d345c0367ae9c0449e7e42bb8543c1caf088632..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5031 zcmbtY>2n)r8GqK=)vn}q*gZRM*&KApJ_E7K!f3Ii>Xcv9x*8D5Z0bYo?8|mCk!kddw(Tc46E+v3v56 zO0q=lv&Ni}E*f?reQ0{t%y|;2xvJ}$HlSNa>eQ_5nFZ4wkSIA`wLPn3PFWRex@ZpD zw&NL|<=7R8x<@Q0U3ttXfHiH@De2*|HR|Ne;+X4{P1l=;9%arbR!xcYr9Zy1^z8E= zzxn>PH=dM8bIlV~%Qf>6L?po-j-p%yqx678a>aU_Wv;%v0D-Hoz4!4m3lgH^#oJcgdErNoz*o0NE4X^4#Ix;y4jDGd?U;pdfx0V*3f*ROy+`Q@ToNtz&@LVL! z=YHYkr4JUC-Z_8m(%Udrt(a~$FH!#pC;OOD@l5w*shFNMa>px<-4J|wKhD{LjXFTj zMiK3`SATQ$?B#10PGxsPndhJ|aBL{m?W>zMoRXDys_D}FG*VkB7poOi(=+V~@|?yI zWvryjTundqTv*mF??RGQ+A2|o-CCcXICaw9I(5-KaBa}CEpG@pOLb4hNTU06QYady zZt7L32k|Ux5uN&|A9b{BZ%R}cvRPJ|)@d7|i1CW)?FyUh;ne<56*N2bd7U<}Q=Rk$ zogQKnDojlHt+HXnvdx3l(zNML8t7N9uah&1Q-*8tIY7$ZjD_C0&(Hs=v%{%I_MvR> z(-mw}voG`I(4W4wIWmY=9)dUVLPJVB&_>J30;W5I$<5kxE6i?Ur0A5Uo#W|!rfs^0 zXXYWILa)eU4A59GVYf9IsLhy?>V`X9kgw{Lpj(Aohr+pPmI@||xkq%`Ot)i3Vd4>g zt{8hrr#l$CDYZf{-BZ|Iqoz0G=>D8x?_q96ep{!9=__%H(4#tiosKYWTBlu% zlPIs#Zra1pF`crspP?C@Mrl7*o`XHs8J5)O`9<)GrX-hE%Q1(#ydk9 z8_$mJLD*R&+chiIB5onA9;4DFLQ=az|Fy1~uWDE5nC3a6f-0SoXmfoO1a@cDDq_`Z zbOx2g;;h|>sUW#K;`B6~8 zoT{5M_gcINH#P=;Kc`8e)Zk>M!H1x^hnAxx+Pd0hkFx7aXV2iG4lmi(yjjV)R+*m* zv=xocm%KtPe5c@~;?#k!27IhSacVtEI<-~k7O-H$FK215v1|kjb`E}TgO(QPVQsCx zHXdWz1SHl>pre711Ob~SAZ)-RF17<#j-KZO67DCF{h)|>iM(U~=BUED(t)hDS zdR1e!AqS!)dvEIfzV({G&RoU&1M5|dCA^C2gX>kjjmD6e>&rO;bKDZqp5FKA-roWe z4b)gq(KOMZp4<*%dg_&B8dvsf_^)8C`aS&6>IS#3)u5Qg8yei;8yu$zw7n?(M5uVm#_u;7BIZi3Z_CvPqs3X9xwq4ndD0dP4<^; zm$=BJQ&apjP?=YV85i{WUK7^hz+1!hRL@=iv7+B~R>qH78*e2r|0qppabYW-YE)Kp3`-sl@eYNd?n8!fW~_$ zyexw8n)MqFk2Yw&Zih+#22O*SbL|6z@(#bPwzLn-psBR>-ixI6FVe|J8E<4{CM4y6 zqH(JUQZA$TBy^cCq$QP*WM-m1DOw|;_k>g-qxvMYT_C0Uq%A8q$+&PcXp#t>rN`;J zh+3gD^gTc=DC?8-ePjY}Cz_!j0Ftp-N9hSb3X;8@eh4Uva&HDFH%Wa&&jlstLjRNE zpMXV1p(P2$#pe_J*3T`B=pZFz2zlgYRKON(V5@Upj}4gBX68Eo3WPvJTP9MMTA2nx zBo6P)<^4dXIbI|o`yoAjBysvOJ;Ob*NY5soU!(=@1BPD~aE{?u1#IGz__2Ts4F3c_ zi*(^;S8g__X1xxK5zid_MPmi`hT$B$r}SK=pRc@+S9?K4=oe7XLca`dyVw1{2xJ1yhZ>3 diff --git a/exam-api/target/classes/com/yf/exam/core/api/dto/PagingRespDTO.class b/exam-api/target/classes/com/yf/exam/core/api/dto/PagingRespDTO.class deleted file mode 100644 index b03e3d83db1557085f11bac3483ad9a679d8dfa0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 801 zcmbVK%Wl&^6g`tTP3@$Vwj`7kh!7Gqm0&iknkXs)v8Vz?#478FGlVJegV;uduVB#) z{6iOPKw`lM@J$GD#!XdqS0T%D-{;P$zei6cpqWvNVTHRE&< zNDD0WOk}dYKzX}!DBwJa$J#>~ZXFdY39JrGq+jIWNY8vVnzCYj5C>{{sAk663#XI4 zHL1Y%;Bs?!1)3LO=E)h@^Hg315g%qctE;pAn$3!p@eH^Q?@>oKLEtnB>2@;54Fcsy+w zsPO~prwNoRw60w6tkM#=iZz}V?lYXCO=ssj*4^W;sJJIo8`cc>&b0UL@fTFvp4w}l zu*fM|w%8QdfXkKF&_si4zKc!VN2?g4$;pAvVvGi}HgSV(&j+$GJ5Y;1AAju+wj361 M(JbL6ZWZ$OKVAd2&;S4c diff --git a/exam-api/target/classes/com/yf/exam/core/api/utils/JsonConverter.class b/exam-api/target/classes/com/yf/exam/core/api/utils/JsonConverter.class deleted file mode 100644 index 980260b3c65c0d140d465400309d435194c4e665..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1996 zcmbVNZC4XV6n=)cC2`dVN^LEQ_|haGTa_a1A~htYf(cL;LIZ6*Lox}ANj7J8W1Ie} zHXpE-)Bb?|p?>ptC%av=1dgX)W_Iq}``mkA;4BoVjmS@*oW5snEX{Yg0NKZ%&0}Qc!{*oIt-l!UDyZfT#F$^u(4cl8}=#M7~ z3BpB(wZ*z>$5}4WTFuIz}<7j6Y(y+uK+W zV>SC1Aq^}1%nI(cq=;Y)AM5x8R~YnlDLk*8b!44Wf$n!HJ)TtvaU9K5aN|0zD!5Bq z()Or=wVGeWl)EjYqckRTT<R7--hA80%ungk?PA{WGLBrP! zqg_X;v5l0JysZd|ViA!DmXOhqW|%y&dGexc^Nn^>=y;4Q(U@9a&n>4@8_R2}&sQv3 zh=O^Bnz1GQwR7q`762WhYE3t z-V<;I!x*QpYcwh+Xy#p~Ni|86<_6~I^bog@qPq-kBab*Xk-&4(C}SEnX1eK35Z*9K ll-4HU#jt|{wkW|(nrh#nNPKORT#?{QcDf9HPqIGz@D@~IGui+E diff --git a/exam-api/target/classes/com/yf/exam/core/enums/CommonState.class b/exam-api/target/classes/com/yf/exam/core/enums/CommonState.class deleted file mode 100644 index 6721658f872cbc032b0203c874939dd592d0bd59..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 400 zcmZutO-sW-5Ph50q{i5!tyXjO)Lz_!-V~u0ghFh=O7Gh^Eh$MBVp8;Hi5KzU5Aa8c zvqe$RUD!7tZ{E!8`^W1WfK!AHEPO)&)t*tL$D5b(ZOTTB?#9)CGc- zS}U2Vd?_dM6~(21J)YcL4&RV4vO%?*(-l+din{5cRJ#4`?)}99kwtyccIgP7qPQ|U7r^K8{ z$10tvA~F6~(4Fe4i0LXZjNsSC$7UYZ;c@w^EQF>3TcMF>m+q#w>HS_zo`crX%Zd%su1Y(+CFE(Gc~gK=>GrKnv-Nu0&2D}kL}f5I=X^9Qow zV9!EB!2M(3pox}%wN^<<{#2mT8}|RHQ-{F5g9@rTI&fg2D$w-ej7DV|QW2;yA=Y?# zq>_m$Vx51J_FY~U5#7dG(fFD6R5!yW+$;Z)fv$GvsH?ph1!}x?Ih(UHM!lNm3wEF3 bR<_W7V#>fFpEe_SQVT9RTUJ{fZKLB)n!{4A diff --git a/exam-api/target/classes/com/yf/exam/core/exception/ServiceException.class b/exam-api/target/classes/com/yf/exam/core/exception/ServiceException.class deleted file mode 100644 index db0bdeb70d12ee0b69bf305ec8eb8460003434ac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3011 zcma)8ZBr9h6n<{9n@!>(5Cx5(q7@AZ7;SB9k+$On*avMnAT-&)wa;kOb_&>^=A1bI)_mb6((&e}DP~z&SkD5E94~ z?Mn8WM_Kc0qmnJ!j!CI#Zn~CT&90cvmQ^$tng<#bfkTgtEhAetsvFtmdeyZm?Rx>G zXs??B`xe_u`KoJfn9i&~xKi5?NOat-xQZpHPzuz)7cmVMs=u& zNV^AhByosd@>M~`uz%a5APV_rT!)6Jz~G`)HE-7|Yo>G8SSu4Jv1k{K@~YujavvNj zZpo?%%=E^*a}vmwMn)tX0!MmZcCsZfR50C=y?)1VjEd=+4$+S9O!0!_*bX_4 zl)&Mg$n;cW)EgIw64ToY9Np0&-?k*YgYSSki8zC-hSLJWJ*A`L49+s@Eu&mFmmV=Q zseHer35*35nXhhHHH$pYSF5&b$YN&TiN&&AS+k#HZ=ZJZ;!yTfNHxX(-DZtdO6|uSll}cHc{`w>#vx9?#Tlyu2FnaFgAmFide*Y*>p;hw;Ob}0VomAX}4 zH=QUxW{SFJM@o8qDUQ3iFS|A)rB8KyhR=y-Y;Ky>bv8n03Yxt3luLj!8^xD=J3T?) zJi~@Gx7KB)Sz)_aA+VT|{yfsLBKthm=|-~>dJK58D86FXouYZ&l081s9rS5Q5sopt zVUFAoe>hP*iBp2>0B>T5^L!6?_dE??B>fV4I@7@53(8y%yujEG-m}B}CZO;;&hKI9 zID-8+$}cd==X}iF1Xn2?!*K$`D(Na60O(ESz zn+nh}0orm9Tf&P?`4Q6|S|6y>gvt`?42E&G11ix9EFouX8%pz_IMxaAHsuJf-r*`K z%~BRz)%0_Wd`}@n(tH(=3rU;qD+Jbsob+!nH1_`tox{6Kd$&iqfQU#sLk8Mem0mYp z@-rD}1sw6prj<#Rf06{=L*`B9JBns^^Id#O^PEb3%>PC2CEuk?`a7t~v&?T0-$D&P z%lryam`*ov!P`=}czc?koHFw}_9T^87=8+UCaE-Vsi`raQ>ikaizHR46M2QiQw${4 zWTdI2JR?@PCuKK%A6opBa0OTC^9bAb8mm9VBENQ6H}+}}|6o+Z9Dkz}5Bg%P#rqZVuE_D;hnNe5m+hxYMx@uhh302fZF#NI zN9lFYpVz#sau)MxchUUGGnGbjL$eo^OCGu7L$f7P8y(6#g*MZ`;zM~ppHt*TQVDLN zl5k#)_b2k4Z#8f!%%tDO5?xYRx_2mrIGfJkBf1%;n+LE=N%2U#1?4pl6p|(ciQ@8_ zO6`3}9*jV3Dl~PJ?MGB29;a@fsF!F^HpS%6xO+db`VybW$QyW&_@aS_GFmQ)B0mk7 zyY=K`5TG1?8-0>jAh;aRgZ|)^lZoT0r+ebwyqNG+TWK65TYh&9dUGk{B{U`zHpBzj aOZ+FbPk8Ow#Btv}2=?@yO(n0etp5N{4-s$x diff --git a/exam-api/target/classes/com/yf/exam/core/exception/ServiceExceptionHandler.class b/exam-api/target/classes/com/yf/exam/core/exception/ServiceExceptionHandler.class deleted file mode 100644 index 700e1a61d4bac219a4cf9ad2cbf2f3b81b6bb268..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1523 zcmb7ET~8B16g^W~YAXn$@}Y==B894B3?{}ZNks|9Rtz;Y#;4ic0S33b&2+ZtztSfX zP5c4=DC3=_t_>{2KFpo3JLjHz=Fa^3{rx9^Rh09{Fg$d_7XPxt~0l2zL3FvoBr4F#J>n%B(RAm6n?f+4azqMGT=Z zf*gh!#%d~%Z=#kX^*iDCl3}72y25V?t?azFm^FKq-Nly zTBvt#}6yQ4)*9)$W6KadW0$c2;Z3t_~Od&Tme*^UCETC%A+ida>HAT+}25tBL- zOeDVi718K{k}@`wWpj5BG9+?cn!V6_D=cp#H8B_wo>w(SDYhy-;Wb| ze0I=2((#!Doz%>=EDFP1Dnt^6VXBi}D-8A0AQxF#KItvmidWleTXqaldXh>dxzE0A zj@PZtrz`x3WV?4V%IRfK=l)+pV%errkqxSus6$5=Q~B;0)8?CG62HvW>pX5T%$_Lw zzWj?=z@mLlcNiWFC@hsWqtuIyFw(BvQ1$`Np7O-++tmv0Q=n=IHHFg|iItH0M+U$W?m$mrwkV!(V7ffdUwUkvQ_YW$2zRJrK)w?u`BEL!GYr&hzXq8x4*Kjl3m%g?rrZog_=Nb(fiu*8+HQY zS_!wxrmO9_Re_7ymsU)$(XxFYaD6J< zTK7^&vQo0E)umKOqPd}eSI*t7*tJ8SkXADJ#de$J{}DTr&o3=6rTCOQjGGw3FnOqY zhkilT+J=tQ6rF0#Wp3B2D1ZWeq3jy7z)&+!M+cfKsb~aM#u@|zuRFCpuXx|~?XpvI zd~#`!rL0@!Ff=iBms-jG3%QabW=Tgfwe@m#>hUt^<+hLkMH=);TrD*)DbTOVQJP!6 zZy(9D-MEZo0%^<`nC8qhDz2w8F^f6QtSd{Yc|LiW3L33KDLcxS61ak^2HvPgY0{c_ z6Z4$Bit~gV4b&rq)`S?_~Qr{aI6>WH?g-05hI#7M<`$9f-+3+dhWv__4C0>1&q8w>~ zWUgix9`lq@Yii(qLTa=k7~WXHJ2(=UJcWT!+F%vuXx>g%kuk`&_n=F}0*{l`+bWX$Aq+~W`zZD}*JG?~`x9m6c`&?Rn?KQx>Q_ z*XXJ3-=+O~v=~O@IYY$_qz&9Pcp(@(*x9>)k(;#9jC_DBy=CtoFso!gnf?Qbpabi& zmAV5x`~@$c82`^R8Bk7v?nLsW6G;VGCGxIIJtmcDM@amK z0@KHM7{M?2^cdR_{Elm_GjJo6d4!pF=u2l_3k$RqOX;U>YgItwzW7$7X{e+RtThEmd@=(J?N)ZTSq4M@mA=?S z6CZu>KWRJzMB_)|COfnD&bjxVb9TOd|M(feBh)M;1e{(JxK{&LO=RHqqFA|O?GHz8 zJ&wYc=F7r@K;c5ZmF`f6XYNV&LiMyj_UN$v>~-Vh)H`eo6q~;gEgk#e*?~a59)%+< zL*0?Xu}UK&P#TS#AaIV4oqpf(Jm;x%#YbTAu^;;Si9oVa?FcN?qrS3{#8M76vI5IZ zKUB}hL083X*&Qk~G3v=-N5;O1=g9?q?vDian*UQpc6MKC)sBo%f&I!%fD!K=@!+8P zw;~H`0-IBzT1~Xu@`KBvGU!GW2U6Q8VcihkpwM~4sb_OXs+}~p1PCZ$Cx@F@rSQSD zl#&e{I{haPS~3Xe_x9}IpM#Cpvp#Jc5b& z43t(ey|Y`~+`uZEnBoaXm?0aVPL0nV%mZowhOCVm%t9Gd5l+oY1fKJ#S!4P^@@3wLmjiIiYP Lfw&5T1gbv(Blxtg diff --git a/exam-api/target/classes/com/yf/exam/core/utils/DateUtils.class b/exam-api/target/classes/com/yf/exam/core/utils/DateUtils.class deleted file mode 100644 index 57120d6995b1b1e8405a0966c31b12752f94360d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2172 zcmah}YgZdp6x}xu2GW5BNp z{ZPLImaOGh*YZcH``#Ivu)rlS%;TPO_CEXUd;j|T_dftULRCXZAX%u`nUnpDd2HC3 zLd7*RN1j!#W#$df+>}omA_DP4xO)baJiCY@F2-aAeGs>n@G+Z6sNU%!D^p>5PXE+6t>KRQnmAMF= zm4$kBe1wk$w3_K{ST=*Nf!xy2FVN9IlfuQ&hc;Q_wvIbUQVe3s63b4`Dwk!$RBc7W z@I|VUHd}E@QO*X@ksZV^gb}IbrxbT|CAB3#q;!lSEzoK?-j-25A}1DFW|gCw>CU+( z!F{UnrmiF<$`@tNE+^OBwDh527IG>-35YVU6+#x3$bz-wInz6+6kiywVVj=mlD$@B z$yFIY5==ogu7sE7WWw(z764#Za z&h%P;L+9tNS*p-V&P59`Jn=>UM#nSEkz^n`&2VYRN)8FQpkoowY2|&zLEzq1OZi$g zw<3+KXk7jn-nXgkfWLHYj~sz02*i9e$wFZ23gXq;*T^XiwkF$5N>_ZR<9n>L;djy! zYx~luE6rKbShVysHf6`$t(T_e@968MMjLp__-$3gt*LP}L~3roc@HUhTk!)~obYEN zmzyXSlS@l8wmnm;#USvbj%~bdG~Zn5Kih9?b7fAs$);iG*h8MyR{UZpVqb&YsEq+F z92d;0XH^^>C3P-U=}~XpGYW4vTtglKTGjAqYeyht9@BnJ6h0(#cI_%BXH?b6rNO>* zEc({xbk{3KZoyo%(f5j@0w zMZO&=Jm6D^(cPHj_b_whB{M!}Y*a8w5}(2s0r6c1NHzM-F`Z}UGud-IA?L4hX;S{W zj`{ao^~rUp$Op`yz>8`*i(CNwG5}6U;531A zk2uf8f^Sx_MS1|_-59clH>#t6{hOfD>!8vvWFO(T!StVK>3T)cnwr>szdBJzLA+GCbCj{&|xnlEF7}tTgLYwr2RuH ahBcJc-!z2AT9P?+kjxKw2{`;8Lgil*_tH54 diff --git a/exam-api/target/classes/com/yf/exam/core/utils/IpUtils.class b/exam-api/target/classes/com/yf/exam/core/utils/IpUtils.class deleted file mode 100644 index 8b7ab07a3dbaa99bf16afeffb8ff243a741e065f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1281 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 Uyyd>~Y@9qx6GiUjXMud+=YMDXu>b%7 diff --git a/exam-api/target/classes/com/yf/exam/core/utils/SpringUtils.class b/exam-api/target/classes/com/yf/exam/core/utils/SpringUtils.class deleted file mode 100644 index 86147b0ffa049ad50d1d5ac5fd7a34fd44080fdb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1449 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 diff --git a/exam-api/target/classes/com/yf/exam/core/utils/excel/ImportExcel$1.class b/exam-api/target/classes/com/yf/exam/core/utils/excel/ImportExcel$1.class deleted file mode 100644 index 5ac8b9bc32011d5fa61ca6a0ff11bebddec88535..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1256 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 diff --git a/exam-api/target/classes/com/yf/exam/core/utils/excel/fieldtype/ListType.class b/exam-api/target/classes/com/yf/exam/core/utils/excel/fieldtype/ListType.class deleted file mode 100644 index 56bdd0b5496dbc487e286fc508a90ce70741ed94..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1971 zcmb7FTU#4d6kR8`31KK0%B_}CTCO29y ziP!oSN^U?_9MaKW+7!ghMNF65C;$M7CnHN*vaRJ!eAaodv0kbJSg z!Lq2#6<*eH9&G}8LH;mh+s3YPL!e{G2UV7(4kw7)fi4Z50$2V+hR111Ij!RY-WSl! z@-z*7D$sTo`L!sz1w=B29`tIse5?i@nvN^DDiAK0ER*C0&w^R6Gr{+z5&am{Fd%Tw z^~}|x^ywJFFzab-Zk{0J+c&(%*=L5ON_om|wt(fD)Z)z@!m?6=6>dLXeRh`L0evUd zPn^b{Bu3MMW8|J@jgq@f!!3c7{V_-`9~rmVLQnl;>Qk zJlJar`+<&md_^CeqL=fe3ZF?73j%@lhfypEKsD})j&HC^Ok0*LBgcb!x1QF_j$tpz z?<=y9lj%Bc$Kv(J*iUr4|NJ5{b$LUevku2w?rUTPSjW6TY@t}Ob8^;HcT!XBn!Bdl zM=#jnyez?go-9Q8ukkI#k(v-ryh8LBJ_M)_?ljPXMn3D_0*+05Yrr`)bCufsJI4se zvDawHBwnNa1rmw)#eG~_9S^^`9STnFp|vaAeKR|fJV0LnD?bKBcU$P^>fa+Txi94A zy5M58^R0vVI!Uz)!yIqoqMQG+OMDCojJSKQBZ*OR>O~aS7z0v_t44nSP2NpvXa9UPF|bpv)26p};id&vI^_G8d`oF^Q`} zCAgE6Ij(VRz>05FBbKm^Zz-*ps1Jz}JhaSPRkQ3q!d0{*tRYCtG#(L+7XYgKW*o&_ b?--?%vAS?=X%}d;YPC9R1-@e-fJgrVeUZn9 diff --git a/exam-api/target/classes/com/yf/exam/core/utils/file/Md5Util.class b/exam-api/target/classes/com/yf/exam/core/utils/file/Md5Util.class deleted file mode 100644 index 4b5e79700999d0b41f102ec6a00c68cc48f722b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1339 zcma)*+foxj5QhKBX_L4fI0Oucq5>vpSPy_oJVr#K30i_!6jz(g5LT02YIkD6jpc%OsO*QHUePCcQfAtG?(nfbyr>ZVgO9#)=7O9{lT*^aGl2!u1)Wr4^Yw&vER2m0<|M6KJtz-Z||Q1T4cs7?utWlDQM zi^{W|T0Xn~D2^_^D9=tM(SwwRUV*{ZJ6~E&&sJMTS^B zh10BgwFSyeX0?!AEoc}O=>NMEg{EDvN-v2KB$CKrTtil%YtO9cC|Q%9jqx!Bo!1Q&H&!X#16jScBk1#+G8+xKa^@cDp# zTE}HvVUd*k6R$VZflkAWK+j%&cQ-A$p={UT?~^p>yuHh|C$>_kL8zhj%|E`9|7d!i zxkcmE0)<}@NbmFY6PZI`E7=ebv=!`~)NiK0m>BusqB5=LWpkr70~&6zKgv?AyVXag zXEvmg9{VA==r%n|&T$q6^xbKk2ok|bFf-0E5aN#GMyXLVxC*Y(@ehcn2b&lp+xfU$*hD>K@c=~#F= z`W7Q;Efu{q9m%C4UD$caL3{NPXCkp}FcOSMN_diJKv~Iy(@`#t+=gs(%mi#gieOuA8iOtmLxKU+s@~mZnPeX8>}-(# zyHmYvRi(_ZKFNcv4zg$8m0!_VbQX}i*I*=zOZsu2m~mmJ@T?h0g!rA>j{ zgP^HQWHDf&4|##1n&Ye0u2)y#6IpkaK%o{iq`N6YNAG*aT(swO1S++26RHXfH1<^E zg(fMmSggGvw-JSo->RO+Qrb504n_(?}cGcSMDSt@@sww_VjA2sie^p>K zjpC-h@u7w5_=p*l?Y8op0@G<%&qULsUDXgbEZjsLV& zrOS++VD?`y+svxtx4Ti2)xsI~Ona^)T~=OB7b)@D`%UJC@~x<7FKDjIPDK)~kWL?AedSKb#4H)okd}`p1Ksg9owroq5ADhPW0>2YC#k~EP%@TNt z7P?wG78datxrOn;J-59l>nd^@I{f7nr3@@F&F5oeqKdmZ&0h%IOo{BQcDh4{l-~#s z+OfciDmhO&zQ9;+yVTQZ_DN_v#Cid741x^^zK)c;&ee2)zSj|E2JZaMkP!V_K5Mq4Afz6RN} z@Ph_12(pn>g$!HF{76bHEE$K16eynKmx)s@U~UB6u%RCE2VkhWl6wE)j3$U{6eP?4 z6v%PK509h4oy}Qr?kgXm{|_!QFgfaDUJX*hcqM@~IRoSLKM_NhljoSm4DAFWpPAU*BxbqF@a8z? zxXR)ao)2buRg(sfH5Vqh$0ZQ-gy2%rDX%L%KC$wLNR zA%p3d+0~vcVV36ylrWp5JYUAlG@m~HMKO3IRe?AmeMiM@{{5O{_yLgg`vZR}8&p3i4A3jD}1gP;Bdb)>th diff --git a/exam-api/target/classes/com/yf/exam/core/utils/passwd/PassInfo.class b/exam-api/target/classes/com/yf/exam/core/utils/passwd/PassInfo.class deleted file mode 100644 index 1a720d35f5c373d9ed9ddbfd56c3c6ec77c0fd1d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 893 zcma)3+iDY06kTU>Po`;%P3x^UT51x-^U}ALz6gR4wGavTcrrOnr%YyKW@7cP6fA-d zen3B}be%J)5fecM_U){__u6Z&Z+`v)aER>^9DxHbn#eC_Qh!zx=|!=Y)6@?V`B5dw z!OSmfn2*Ys6b%VMFB+<-E&bwk(Hhw>bKL$P{;4pFwlli z|h6M=T`|4!xwjW;?yk4C2|Rui4-nBAqZPW$%ewRUHbIRVKXpta;y zb6JfejINhfni}!*tlE#Jv8P}8=8Ba&^JGERG3w*L=KMk`^pBBxBJO%imlbqle4 BlobE~ diff --git a/exam-api/target/classes/com/yf/exam/modules/Constant.class b/exam-api/target/classes/com/yf/exam/modules/Constant.class deleted file mode 100644 index 6c7afa39147f6a60d802e240d91d622239355ebc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 361 zcmaJ-yH3ME5S(@FI5-Xo0SY99LPhAzx63M1r5IULI%!-8pDz#d6hS0v!M!Rc5>*RD!@JDv3 zBDAm_BSM$ZPqb0vDqpB#CKs8iFW6LOb6Mz`e-C~4pi9D0@?UmN5>0JYr0Q1Jn|@=R z*O_q)PQm{`I6#0l*N~Zq4tMNCmoesvXgCm@y`uNhNcxPm0W2Oc#!Vk!2Sa9rT}BUk EUsJD77ytkO diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/controller/ExamController.class b/exam-api/target/classes/com/yf/exam/modules/exam/controller/ExamController.class deleted file mode 100644 index 38680e7d0b07da5ec099fc750cfb6a82cdbf3c44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7641 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/dto/ExamDTO.class b/exam-api/target/classes/com/yf/exam/modules/exam/dto/ExamDTO.class deleted file mode 100644 index cb3d00d5a05b92aec05c8a9ab4162cbc3fc11c4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9155 zcmc&)d3;pW6+SnaEt8jheMu0IsAO}BT8j^{vIH8M045;{w&;*NU|=#6W+oukR+MT{ ztKfnNDq35N2*@5pP_zrSc5k(t)oN=3*oE$`b)nx~-pm^ln6dwqUotuOEZ@2J+un=%+xcZR!tD;N6A>-^om?r>Lc(2UAKS1jyn1b1rtEH^nA@}U32mi+yWdyny6*ebaw8bKU(4q;9^w!=`EYNLs1fl^zPYQ*?F@Fr8 zQARb*a2#FXU$n@K`1}cpZ&FX7CER5OXGg+4W+b)}IL_tVB|P!Dcp~Pq-ay3c%9QS% zu|SMZTRXmL_3@qS2iDzrtZx@1cV{>hGefbsU~ui)<3}Ly05;UVvIizbwn;ZZ8&iR| zl5qpKY#%th>VgxipE$AMi3%Z z2TgwnfZE^#I|tT1eq!Ug!43T|08S*<4lBf3&Y(9I2>PZ19oh}ed|Ma#qcJmbU3bv8 z#NW9z8V=cF_dH#rQ8e01P4sCuA=h$+=lH46sF@?U zu@-KfMKfu(n`R-2hN}QQe&mhM4E1(LMG+9o*XRn;8D+ONPMSLRnzr^yt?k@#n?^M> zngh`XLU5TPMy=pc~@yPm-9SRo7yH#Zf=~)O|I6cl5{V9macKr{G=$U9Mb4o z@-uQFPyIoxvSh3+?y~+&sF}wdbZXSa9k?22a(qU4&4G|Pv$uPJ8EKc*sIWQQ=?`}J zQK3*m6w?t~%)@uCNR?C-5IK^A7<4Xe@%JcuCnDK|j3`bz67jlKsp?i!X!$UetFSp3 z?p_dH>YHwc%m~hO*90Dyutpl?AXs9TP?9(^qERttdcj2f};@SsdB{m z*J)JFhg)wn#xI;>wlyToRGRAQ4%_6XQfYnoqLS*@=yP-fmp-l0=Oy)wMqiNBVU2F08_*7flP`Rg)7ac_Y_S=^YI%NECobAt z!M8EILLn*(bGDSKQLYfhQ0LU8nkU6}j#P;sN}L*{V`C{CTa0Zw{KTSk2^=2U#Qjky zwUU``p~(9jj}&uKu0eGlY7JH|BJ|@ONRBj$kLA>`UMq9e5^Wq!AjB_Pg%BU-NeA&% zjz_?L14||Qy{p1xXL%O;ql@_sC~l)BezIQE=vVYAc5`-XQwxeRYeI#Nn9<%KTAVD~ zF1o7Ko_VWnyOUjQzs?~_Y(Y+Sa$Ga3c_3Y|7A>3y9j$8Gyd2sJkEc4m@a$^)3bU(| zmJ$ogLgJ=BGb&5m-jX}HHxTSHBOdxIN{8x>#|FA4dg&znU88@{U6{(HflwfJ8E5@V zqkq#oVEKDcp)t({dx5bkmhEOs@-o3g@8Y!7j}l9p=%M#?Y@d!>lp5S=JWK>Ww){wH8T>LnJl`B|@ z@Pd^uSc%OAt57<#b{L#u6tntK_H72U6o;sWFR@&sKhaWg)H-m~SS8}la4UG*!o87B zb6P-j@@jL==R3$~bgFL(xaC~3`A1B<%xGsM(8IrF&}h`LO#C`2mnz6j9?)6%){sG7 z{NlF8I2Yr5{LKR=KS~8uIFE`z5 z@ga1t1vHCB(rg+-t>}B&Fts@}1zq$NbS2HFt7rjTO$(u^$!XFeT8vQuzfQ^=Q&0~! zu43$A5G)r)-T2E_<^#=F=7ir6_nRU7auq`3n80)@OvZ2W6hO<;141K^0w|Uq5ZaU! zKr7M%LR*spXncA==xkB|O-m05jZq4q*7ShTSET^DF+Cu(WhsDeP7es3V+x>K(gQ-{ znF44{dO+w~QvltO9?+e17ZUixxn=-718L=|t=mtb-NPnZsnk%(#&cEP9c!WO#0@Ae zkaelym!%6YFCPV8Ea2}>4IfJvUfx~`zEr^9L-(c%&Wd#5<@KlF%LV*>sp03P3oq|a z1z#!P*VFx}W!G9 zWU^{`G^~4%ouX&yIW(aq>}@)NW;TPW*{kTopMz~Jdxc&A<)G>8Y5F=SC$+FW^bJrh z3bK3Yo1okjVRzEEKzZnH7NVn|vSgZ+qA*ez&gZ9&pKozmsw3B`es+fgo z9sLAU3G2n9*iS)~vis2Wz6`1ihu@@EK$WwDG>v`+N@qvta{4)_3idj__xu7>C3_36 z;J*Y_B^vsTRO|M-z@(26F_9XBPSqQDX3F1XKGxi5t+b+ztKo>uWiGi{an`-Jv8NURWVP(=uS(t)o=-sD=tE{kyhIbw-BMw zC@Z%m+F^Kv$P*W#{79>vMwSqv@+hk;OSIeY3XwN1LOqgJdyQ-%LMc*K*_LR(p$U-| z7ipI0fRQ6as7=Z$#}XYha)l^2E<(kUz783ALWE+atn!4YYS=WU$7J|b8fUU=>2>-I z_Rh)X(;J}h9Kz<(o7m4x8pAH9--2?`Wk{&sfpXGZ=B2klxhRHru>nwS?EA|!2+BiG z(m^@~Dhp}7nT~_<0(CW=0F_PeqD;IEN@JzeLca%{%&L|W|=&qrJhdk@jcxrKi@ zKz~EU-q}z8Ec_2XK=0=Cdy?ME=?^6RSU>(>1k03zEn;G hV)*V`KJQsqV+O0@7bqKHy)2_=;V;WRkzfv$VRv+`EGia+8J55J%8rHc>|ijzzzGBovzrm<@EWb z8?xvdhzSe^TE|T1ET$(vYdW4RMZ@$lMM91c%qL&md-B~^flnzYKhQqC z_u%Q*50qA4mcCLAjwaVbyQ_sZSG%C>_%J=>Qh0@F?sX%7TmwqT)O zU~Ar~$#c!>lJqWwY{v6$(XJG1GE53uO3g1jlOx8%06nt zZio6&3&TpUH^OR%M!Snm7TD%F>6hKoyzSXl>9g5Pz*oWq3`@BkRv<>s?FwC1MGI#s zo4njhJO?ctLYi$T+O=8bt(1o?>_DOyQM_Z}0Mbf#)WT~@Cy=r51`-@Ecl7|Z;<5(U zFH29rP<)N3IWq%IAoc~ycK5B&(BAe3#?BaQ3C$fv|DtafZ_e5ER!hvX-6*Se3PeYf zIR*KB3$r*y6!QzYxmm)@kqA#VniZc;0S05Fov>%56WjFN@C+FEKw$gYlX0TyR7%n_ zu_&-j@g4Ha!#e7erg|}tixvtPW42>X&GDy|>LUx6aG5H*UY9j8F|l4>yIS4Kl{Imd z{T<&M!ksel30pkAw~d*KYb-FSGA&s+uew4S3W^4)z!U{~7u}{;l&2hZNyJy-KA=hz z*tgM{<`7%qDGg60F_dJZ=s9(DD_|dIBFdi*4Lf1Lq};<(9zidEJYd{!;eLS6t<(%O zunqCcc!@I4Lbr9OZRLsRwr&rteY9{$8Dl47$GF?Y=WhPelm(yq*pJxrJ%tEf;i_DK zIQDY2LI*;Bl{=v(dxJnDn+wE)u|c5yn+uf07)f1QT86wDS{e(R~Q0lI2IP_@M zrs@t`kfOKFP6mA#-#GlpX2XX)Y=s{T!cS}*e*b2}heOZ`KOBVTmDEj+ILgA++7j&qdsfaKeV zJ)=S+$wH7=KAv&y>?2As1ikIh_R&_WT5hoy+&Z3XwR9#--u2x);)=pR9uNM4`AhMI zN4TK4T)~I&D_j(RO8z*MCzbpumlfFmcPSlgaU|3SWu2s*`}Pq^>!0e?_iY5%g8^E8 P{#ht9EI$hlZgBY*K&b7p diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/dto/ExamRepoDTO.class b/exam-api/target/classes/com/yf/exam/modules/exam/dto/ExamRepoDTO.class deleted file mode 100644 index 80ed7c87572886e14ddf80e080021b8448cbd962..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6181 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO.class b/exam-api/target/classes/com/yf/exam/modules/exam/dto/ext/ExamRepoExtDTO.class deleted file mode 100644 index 939d8c05c8f8af0553b908dfef35eba5c1790168..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3148 zcma)7ZF3V<6n<{An=EB3CD1}BDzDn~g;+$P2}OA+SZJZNr3#|5O_p{c-Hn?KFW;E) zgYu!{2gGss=rA(Q;3zX%W?;tAFF51>D8heG@wvO3CTVKhPP2RNInSPZ&U4N^_s@SH z{R&_Y3NbVYq_WO*>iWf$dCizkO*^?#-Yf=-oaa#RQvI}ym<6Z*ns;RER1Ath`;s4( zKOkD5xoEnUksmkRqUG3U295}b;{r{G9lPimwl{9%OQyH~j~F@25m+~P z$+%*q@`gQ`8n8Wc(sVNdiII}+S<~jYRkSAZ=0V%$Cmy{Q1(Ji7lPX>{CJ9X$6-(-1 z!5VUMW`5Xp3a0B_ryuo-+*@GH+|2FgH*P-v_M4|S9zXy5O99O_KP_3VnTu2hHB`!b zmW1EEQwtAbK3>XA`rf{{`}FG{s=PH#n%-DdRxRzxMe}M4^BS>9J?% zwft>J|NJ`SJIYcSc>-Iiot~PwWM;ig@?0asNa=V3-7IU?u=^!iDtGH>#fC;6gtudO zi(6M(E%;bR7rG^KpN_2(DUjB&0~^@E?9F&p3gK>SDaV^KU6w)eyQ8|5n|(`-stOe5 zRt+k5Tg6kDa5X4YHH~^k_VSQX2+ONY8O15t8Um5_r}g{v@ta24*PdCsWkTK1&C`kFQlw3!%21U6Kt4Ah58Rz7FC8pZ@RmB&Lc zPueRa^)=!&#&x`p4;b5i%eK4&3(6Yqk{p-Nb2>i6c|wgs!L)M%-HUZVRhepn$!PeP z-PN_l55P~>58#6IYAkS8-ggOS*@`ott3C~+UnFIulR8de*e?bnkKmF_a*D%l)G4`H z^Qa{c>bhEDc1aQiwk|i&cqH4N-T3U;kGDB;<{sU8dh`3a2e;>L&CEUe>aPcnS=^ji z%(_-VPDnN~qu@|eun8)nT*bI*fW{vO2-iB-&3rde^HLFO(0mSSDf5WeTi2DXJm&S* zmcS}4JZki@k-p`g3BEV+m!d5ARy%%1+fNi4@G_qgB7=B^PdxzORczskd@So|+sYjA zATJZq&XqZO9qpuaVQOhQZ(zjHj?Q1u_JC4-Zmj_#%uVJUlpsm8%I@&%(6PMxZ7X#j z)G%}(_uY3c?|$b>-3Lt&x?k_R=LoGQN9<$btC-|WXUBI?mHVB)L)?KHx!?I4#86kq zEOz-z3Oy&g_(&_=e_(Y&d4jd~pm!&fS-e?B>`kkL>`g}#s>DQ}Abt-`2{jR|0`;b2 z1ofu1L`;IT5EM&jWsq{80Y&Qi?|cyGe2r$1!G88(3$CG$J=wq;!NLLRBIrOC?@&^3 z3`g-UB^5(_AEXpTp1pgBQVcHIaF~*YBiyqSdQAHpFU27KL2C?q_^(mi7>KK?MTF#L zNUkC;wR&>V%jjh1sghNh)c-Y}I-iuvRAf@2_ddULye|0Zg1#2JsEg9+ndZ!XrOz+W z=H|>4%cC`S-b1W=7RN3~{ob@94GAT*XtHR5sW+|qCf3XUNK2@`Y4hSGI1p?YMjOEh z25_9wsu;!zN^)|Yz#ub-U^{k`a#?}{Jl`iNsXob95q&|0LXw3bv3$KCys~bPiWaD4 zKpCUdszO+_3RXcb)Dp}vIr-~(^D$;{#ux(TV4w`96tU7<@0Gs diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/dto/request/ExamSaveReqDTO.class b/exam-api/target/classes/com/yf/exam/modules/exam/dto/request/ExamSaveReqDTO.class deleted file mode 100644 index ecf4c9ffab917f519a3a1dbe5e545ef7fab0ba92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3061 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 De31@C diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/entity/Exam.class b/exam-api/target/classes/com/yf/exam/modules/exam/entity/Exam.class deleted file mode 100644 index b155fbd3f0242b47769675af6defa07d0222732d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8519 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 dbJg@Gd2Rlg{vtpBD&K|jH|M|M7wEP@@0< diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/entity/ExamDepart.class b/exam-api/target/classes/com/yf/exam/modules/exam/entity/ExamDepart.class deleted file mode 100644 index d6ad02aee2b3afe857875b1549e6ae82f17e9f25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3108 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamDepartMapper.class b/exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamDepartMapper.class deleted file mode 100644 index 9bcb21c1cabaaa811d0370d23322b787a5c622f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmb7AyKVwO44j3)@o3WIH*gBNLljX$MU;Xs@ZC9R(e3TAw;SbtEk!H1F9MR#!1vQ%FC_Mhc+nMPj<{TPGzHK2#2%Oi}tIynLJa%rLf diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamMapper.class b/exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamMapper.class deleted file mode 100644 index c7cb7888e84e17bdbc8add0862b14a16585fe3b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1377 zcmdT^%}yIJ5FRfiA^e8FmNODk>7l-G3qk@xC8VIBP;sARr;B0NUTkk5ufgMR-~o_$ zCDd65L4*K>TRC{wWBdC&^Lb|OA8+pfU<=l25DEC%GnpLxm2{1n%uHOQZNX)T! zMpA{hllXFgm1Y!^Rr;6~tVrduAUhB+$*;j?5q8JTq`ot8rN556d!7aR${;#s?1zfaVSO2g8 zKT-J~ve8eA4HXd^h=Apr6J%WXD e3(97-I09K353)Q0Ss4Su&aCo%5qx`c?fXBeAhEyz diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamRepoMapper.class b/exam-api/target/classes/com/yf/exam/modules/exam/mapper/ExamRepoMapper.class deleted file mode 100644 index 79d897dbad94361f8f59adf09d9d266cd668faac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 630 zcmb7?(N4lJ6oyYxm>??38yHRWhTeELV?q!le*C|@!~m5!a{`Kn-9#tj|e!~@UtxGFu^ zCeWL+1*4Ls37v#<9$61s1Ze3LGOa|c9aTlhtjIIza-1-ns@iVIa$Z{z=tz;;&*DEU1zOmWN2b((66xpbNnI1RK(D9czh<5W~}DccBWwF=Fe3nm>Nw^cH} zi;>@$+nJ8nuISa7YG)#TDy}wpHk4PzK1LM(I*32z*GPL diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/service/ExamDepartService.class b/exam-api/target/classes/com/yf/exam/modules/exam/service/ExamDepartService.class deleted file mode 100644 index bcf84fac64ba0cbe0306492593460fa2e32e7583..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 664 zcmbVK+e!m55S^^HYwN9E@Cy{|ivjgP*-}tcC{z>{d{1}Bnv&g=T#EZ^KKKECl$h*R zEw-Te5QdqPIWuQw-riqc0pJvNLkI{QCo-eOBgJQy(M+aRpspN^YQhtw*ABVDF;gb4 zA|WgjXpPu}QNi*dy&H@$F(K3moOreYlNnE?rCBjxhU>Agp3-2hxyda( diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/service/ExamRepoService.class b/exam-api/target/classes/com/yf/exam/modules/exam/service/ExamRepoService.class deleted file mode 100644 index 2f84c2ce90f24be54da0a671264db23c2894f309..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 768 zcmbVK+fKtU47GPF8@B-)UjPz&AxQ96gal$plZJ*U0$#H=j7(`WHR-he8V`H`AB9NT zG0-%w50Pab=h!~>%j?rK035-#0|kTwUxp-oAZ$WI63QSEOy!PZ@tFIJv<-62M$*fD z2TBO_Astg9Xfz)GSh5M&zBfGo?dt6dkiu zArN-=x*xorj(Ie2^GKq(AYHDs+qy-ldVCO3ox}{`{^vi(-7jYhw6wj=W^7ON`AyF~ z$;wo$CY=DGBur&9^d-}eGPt5K4Vh-KLa15fEVU9L>?~-dHQztN-7nJq(=tNY7mUUT z%|#WAZZ%IPvCl5JFv2zF_PTGSM^K+ukgwLwsy2M8C=icGFsR`8?b43?2kNT^0qRX#+0u421>x< AT>t<8 diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/service/ExamService.class b/exam-api/target/classes/com/yf/exam/modules/exam/service/ExamService.class deleted file mode 100644 index b9249fe65499062874e537baf110d6c54b828196..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1404 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 bY`;z4{EVsnOZ*DI=9s*v{szCpACUMDSY4N> diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/service/impl/ExamRepoServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/exam/service/impl/ExamRepoServiceImpl.class deleted file mode 100644 index 795d92a53cc15aaed10bd79c84a0584f8cf580e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5133 zcmb_f`FGUT75<*>vFx!hW)fW7K+2kW0R%~CfWa=dW6BT%0TT?NG?izBEv%6SNn>!j zk+w;brb|+~gmg>Nh0t_K($s8epnIEi{R{e2ddg4zxu;9|JxMdx7;mTToHNqXd-vV- zyZ65L`oAx~2H;NoNkNssmaLQ4#*b;nDLt>{om|l}yzs*_+%Yq2XlA}(X?w(I?r>az#WAD%PGyaP+@4m@ zG8;6qj%#RH$Ih97LfVO<;f`zjsP5XzV>E(A=7dJ0~Jb z*I^r>`{vb$uRnX``sv61^7#4d&pq|#v(Z+d&20 zq>dX=QArJEqCZ~F(B-O@px)??`Q?jR9V?7(|yQC=^|3LSj^p1>6L z7-oRLF%`oS)Ah38_vn6hgo!1arZgdSBPi$#D+pLq%$GqV$o*tk0+nej6>izyi7-sZ}tI9@0<#@;C!|2Hj2!2DlKn?>YQL%L|nw)ty3-S!0o zKKmIHE;tz|I4RIHSzAKDaB8>Vk2tw|b=fhQ6m)x1hPY>3B3WSdbU2=(7~y@qtp2n&e7#yJAP(!!3b^^~`;eLobX-Lwb8XhZ2-7RqVBX?#q@ zI36S_vzDPV@ork3GkEwjb<2Fv2)pp=DHY7L$DC0^7Wt4W7m}6gS7rTp6rWV^7|Z5l zaAw%A;&E977Re&OqiPtrJ&aotWB9a+&)~Bx5lr$Cd3X#?l9@U@$@J!qurNu=Gb%oh zFUUkcQPeF4yrNc>x-aX)qxh1FrzF!#k@uK(POd(!;>%K@Tgbk2XwWU$Qru&D)(C2L z9llEE%&*wpZ~{r<>o}v}nF{2F3QGCUsrZJJzkGW6lm4m03Q7NM73U=Vn%U^f2iZED z7q~5s>ym3i_)m@E3o5=VxvS(Z!xNd`EhYaz#fx&SIa&)n)d=iksVK|AGaY1%_c7f!8Q*^V&4pZJ3mXy#P zyRWR5G6mk4IiJ`u=D73BlG)Ry)hxG@8!Oq&)t^}y+~uZN#d6d-?OnhlFb&6NPbi(g zNZQonIKIbgLLm%_m&9whrr>HtIHHUU^O%G>0nTH^xQd_Pr#yY=mLHoHcqERSXmiMa zr*7wX8(rP+IHScv{EQRz@EE!(HXfkf=_9e#Y2X-b=+!N2fXy?#uogdV!g+Zt_@#;` zadcq(2rlxElQ+d`f`-Ga@qIafn&jc~{#K`LN5 z*Ft)?Oz)NHebN`Xz6#a<#6|^6-l8WJ1wz4?f($44r2F;)EjUHO`YP%GN|ym(GbN`m z03QgV*h3jrTx)E91s}YI(;b)a(JB_q%5ZK9tZNP_%hokU)=4o55r`4^I2}_JupXx< zY09!Fj=R@Z#*v?GfzPW0Z>MM(kfw*W(dV7?c~>Ac^vANY)Mb&>Is!*}vMTVJgjzV` zab{AZrX(K5BV3folB}dge{G+@C;F>8iH1+T!0&ec#gZ+Dp5S{?N9u_QeC{mjsyol2 zvGkRw?p!KK@w}v!1O8Iv^TnpbGw9>sZ0ai$_}W=);rQ9qH-qsyj=z<9J{Ygy_&cfZ z1>?mWe?Rq7Fs=`v{UT@nU#za+<-@60E@0v+bqt*wW~B%mD#I-yltS&lu#~tF3zDgS zVAtQVix9lXl`33{Kyo?AQn~vI=U?StX6(-xs-NRm_zhmi8=RBZncw2~_#;~W1A_eK AO#lD@ diff --git a/exam-api/target/classes/com/yf/exam/modules/exam/service/impl/ExamServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/exam/service/impl/ExamServiceImpl.class deleted file mode 100644 index 53236132f5cefb1f61dbcaaa4d5cb7e0ccf59980..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7307 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/controller/PaperController.class b/exam-api/target/classes/com/yf/exam/modules/paper/controller/PaperController.class deleted file mode 100644 index 84a7b8b717b967380e713cfb24a96081d5726cff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6301 zcmc(j>vI#=8OEREn?Ni$7(<*kbs;T@F)^E_kPD`y1`=vwu#LeK(hDo;SYD8{^6tvU zZ7#ILDQWE9lC(+4Oo!gSbTVmYnh=v|`n`V#cAV+|(CKq_C3#m~T}+$lXhy4Doy+fi z-{-vVIs4Cl-~I%^e!Lq)lfeF@mDOh_ba}RBsQ$Vf-e8+mE#Nh{~tRwl!rBkIA? z@_h^~0{enJla?)YBX0&f9Wfla+DBkhf)B=|J#8kXz#~J!{^6M&zmY#}u}8naeWwdK z*UZXs(=ihnIgra)uHl+i&JlQG$glYR>j`P(9DTw_x|Thw8|4oA zK*6mY zGUJAAs{7)@7I)Gl$YV9^s_s#RkvGzW7dYM%8lvpllxxu=s?BLRb?nS=|DNb}19|hb zbX*R(am-BT47XsD`Cko=dMGq#I4+97mQw|e?#E`xblf7$;W{|}xCz6`nklQGXJ-=( zos-WL9BPK*$x7Eq8LpuZ(neXI!pSr4GKk^il~WG$Bd~kOv~*|2NT;dZ)wnx4oij`= zd$M7>)@dVCpm(&T>#uxv^MmEz{&D%$PpYYDMke%xnM(x*)M>qP$4MifXJ9yDjH}0w zV;fDHv{C|(M{2XyXkJGS)-p0Yc1GZVu<%C=C2&{Tp%rjoy|Wy#QnURVA+SqBE7~^U zE7%>wS1VR_SOHNhQ$q(H6gbzQz=}F)R0;iRDfVdCgI+q(5kusR`V3($i{Lk_=6YV@%U!=fipk>u60TIciJ8mBn0AH?dv&yv7bYBP0w} z&IVJ=ti?3rC5;35RsX|Et6;&+C<$=UIS{N-zd$ys?*uuJUR>LFLlZd=h+^dZiZS*%u%w817 zXTN)^B#yW~RVXV%A|1noz=5DL8uo>TNu`uHmExt6!BiX)mo!{fk7Im1TJR;5)sTZl zmI-dFN`L|vA{4cD^@gj&TDnNf)o$#rjN;y7gR47ma=cx^6#%MfAHGMKW?ntoWJwYd!N4Z z^2*g~OvwUUbZ_3iyg#w>&o4F1<5vQQA`)X*X=~G9d0M{UpiBkA60X@HK4ul{q{ACYf%|J5wbc>UHPSp3w3T+r(JyME55tbTIva=D?!To{ubJ}R8!GP` zyLg0c<|{3MCUuVGHO4!2-N36l;PN#Nzc=wt=T-39+ItJyU-_d6TllRS0}rE}-EVyh_}UFQJ>wV`{1|^M{() zVlxG~wfAq>xpxr{G~s0L!?*CzU-+=ugNU;UaFEUWJ&>J#haw2OVlNSu9c}2tKDO4` zeuvjf{r5=uzpwGxqx`Q`@UgPt>wMo=vf)6b4UYwEc)XSk7t!J&bt@Y_!V`Nx#NkC8 zZKfq3=0okaZ(QMb_d-^KSTQNNFiWmKaQH4#8f)RPyRfBs&dt{Mdxi(&f_{?#4nmK)VnugalcLPy%X@>wxahoQ+TiA4F>TSzU+6tn4E_MPdaxeUN1p)Sc3OW8vHvYz>j z*c%x&%q!$e<#fKhB%P~d0+gvV7rFW#4EyIMky{?- zGYS_oD=OJyroT>3B3Qw!doYnnz0Q5eAIbkWmQc z#hF!Q0E(G(?&^Gc5Cd}SJWK}T9ay(@bgdk^KQojrmib^&P9RmzoEa*s!0@3PwjNr) zmCrQD4~T=q2e-U`WbMbeEl|#u`BobT*W7?Ljc)wFp-p##p^W{>Eyj*9YIbaBPrjVN zHevQUVEyo+J0AljpS;8ya)P7E6BSg8`1*O2*tgL&`$pE@1a(CPr+v+8<&BKodh_VU zM};d~Sh~Dw-m&T6mg|K%QmWYY=lATZ+WGi;5IKR7{p&?Ya3Eb;lwL7*A?FqfxlB5b zg|v>|{lLg=n@2u;}# zbE)~T@_iXud(X(ey?piScLQD->aW6$(R+4}-nCQvBDw5fwyZX7bnUj$`!{J<-fTW| zQDtx`&P^s^qPNhO&Misf5yUg1jQ;XK77xjcG0A-Nha4kCF!#&EGr))IHK>ITR}bra zm9E@=u|e(J&e7+IyyVtP4eH?5FszGtW^&_Y22JHggB$I?(9xa+-ocr=rG+y;#I^ksFH!oz5xv66QHFF`+lZ&P5Ji zY0w$;dI`U*nu*-A+Mqey!)M>C^N>5Z-fkOYnbP)xr zj1rA?Aw-@$_8zi6Z|RYzjP<}H&K84n(LT{O=TQ1U`BrgYG;uiPuLZ zN2wl=RIA4#r=|~M%mnmV@Cooai!+d;J9oZWP1@dg9>C{lZ@3(^y3M>4^U8-U8?(Fe zMx4`iWfbRdmqF`k9fs~p=g;G4Zv2=*OX$r}s-t@hx`Wnn+b0aVlG_-4(xA6W=~D*1 zT}q!es833tG3Xj8Z80b-rOz6aqd^|~IfI6z?S6yaKxcE?0|vcON)H;eKuVuCXrYuI zGH8*M9yX{%WghW}LGO^#K7-y#xWrgt?3Jw6i2N#)2l##0$O}x;ao@y*!)a*{kcxVe z5h4+`A!c)^oQOL}l&ML8_)gk4PC~-Q8s%_>>OG@|a~K4Z<0ev5c39-9_zZQD+H+Qx zdcmSECqw$R8kIxHE2v)j)P)ohF5c>drJakCjE~1JctxgFxggmcaJO2JZIIErJy6kF zl~YlDf|`obVqz*|ZbUgHr%8gG_naaB60qnbWL3&8{OxUXd*%Q^x z=<4AQ#fU+_rr#j97GB!3;5;N>4<5B*rc}ux6Qj#bq#W4LBd7yjm8QK21QF;j$w8__DQ_jrhv*ok6sm@@27Jw-|G?d9> zp0k}*ShXCrU5FZHPMC$Tv{@Z8*XD*<1j#t7LoXGEdf}Jrh01UDSsh~0&|;VpG<^q% zNjC8rB@Ua2svF0eNQ)R*pDW1QP=^({I3}3J0H%s%iKB;>6eHUQ3eyR~WS=TbGX!b%XknR&obBSLGRvTU)7gxW*-Mbw zEQNz(vysG$3YB7C=KL&g+8gxop2U-YQK#D{8FXhs*@0ul{h3lNx0@g9REUZN&STuIH4(cUTVG-$2hX)Dn<8ebxlCX^7Y z0w(GJ^nJAflX$@7F#%I_09wM@@jJB_y)UbKd_-jlQ!{b8;5HQI|NvDSNv_M$1Q^}ben(H+)$U#Goj25Y^R_M#!I^`5D{ z=n9p$9`7;yAq&nzN6mP@fTKSL2@-^MF5c(iF9n(5Juq`O&EE;ZN9W^}LkO930bUIW zpbM!78sqJT3(=dr5usagA-c#L5to5k7gi5WUMA(R=7R+-HXuHVfoFUdd*5KSc8%gj8GE+9X0%HeU7Q zE&5)d(QO&xDqZ7F|0b{W@)}n3ErR}i?(`RVrI(ksqHh=U*SphS;+0-r@ru4f(BI%r zzt}6i>=6|GR6+lKy3y@uFZW6>n+!#t6!bT_(_iJ4UUn&p{zO6l0eAYhd8LHEFX%SKDl&ldDIyVEc8N-sM#MV}J%A9AN(?v-A)dW!yJ zLH}X8#Vs-OUg>48sOV1>^dE7b{R*%2ve{JhrwjU9={C37SG>~8ZdK8rA?R;+r(flj zUbef6evY93s5||;ywb~lS<%lG^!UcEc60oH#8ojJcgP*xGdEMfzrFiQ#6C`ey6xRx zB(`AI%wf7ys1WYHXck^9|LiBJ-t<2~OY0l?z0-r1`cXepa!$i0orWE0NQND%@_y86)0xL9iXjN6F^(7gxSPF2?c606AsWe zs~MneR*TupK`jc@Y_>Q++pSiBwp(pxD+jeHP^;PI0PV2G0kp#!Z;s=j@d`A~9Pa?_ zv`m0@S`$o@gC;1DX-;r}c3Bev+GVwy6FI0|fhL;m4$y9E5t;unyf&R%*hVW zur&psVXMQO!a*GhG{x+2fc99O0PV4+nw=apRe?IqsSeOyYZ^d%t)w}PgOUm~%}i>L ze>=LBy2C%Uv9e58-P`!?phxKo`1IE5yN>qblbnx|z5+c4TOG~xW$BBM{B(h@m%aok zKnr~5)0ZIyDd#(pz5*#kMPDa<6;haP_xb2?ND*4kUZy7?MQND*f}Vs_Pmi)6(bpgu z^fR`Hz7DB@o@2Y{DM*d@ym<$G15%6y*)8-mq&S<-^7KteO{|*@(6=BZ@GEi;Jp-wk zEoAfP+mKrDMRk(C1F4l&*kt-Hq&BvWUZL+n8ixn+U-W%Q_$;KUz9PPn`6Z-jzEw1leg!E>&*3Z{r_)2>m#HyC>_5~NqB{H!LmV%~$p42( zswh5+qUh(pa?}<@@m&M&u>-ss@-#eJiyhEuh{W2DjbfU8zbLu*J{X~gb@1U1*jn&~ z!!z+YXZq)g!rC66Gk~%hj(2aN(ClG){_Wg;ujS_s)2}>XUTmdngB1`i)L9V}HUrwV z(FzJzu4 z4fHoiF}92b==Sef{S#6Gg>D?m56TrU0)al7`U(tw6amKY;N$HT zyxO{t8(Jx#0UF~UYf`YF17;%+w<>UGEZD{$!J$IJH6eD?k$oyKa-={z_NZusoW=&NmAJ?lqpi#DwIyCY!k{f zsSFEcx>WWEypNKSR+O9FJd6+7-!C>MPC?#uYBQ2J-Mp{8g zAE8Yf@*! z2CvRN=eys%=iGD7-Oca+^WOVJbRS)nsX?N3NqaJW^pUvvs4*Fzv{S{bS%^;=Q)WJ% za_smBlXeyda)l#ie#`D1GWjKn95fCa@vM=nBku915?1=p*Nz`DaB#I7|ml$>ORxaHq zk+!RtbF4{o%qm!*9?0cv$8bPekf?JA3m1+U=`=QOlr8arDQnnHnc0!N4Nsh-;0YXN zOG>2NIR57B`Lk?CO5QwFwDM-k$2TFn5lCPs%8e^8&z`vEf($nbOxrkn=Ir(9mu{YW zml^zriZ1l#`P0|WTxJ^CD(te-8AqZe6`pLe?W}3!u!WYn(^qCsU6`AG{rb7fV8M)J z#!OC_;8wZq=CP;$@yltD7wr53o4bI-px``$^3e8zYZQ!xo_bFUr0KK(u% zO`8te*wT*9id~fAxkAJo!8o zlalN2Q>mTlW$1U}G#K{NDlKO^Mv?H&qitR+yc1#YK9%mE6&${q9|luzROwEpX3V4R zQOu|C4ufGgsdN{u!m+U3jVGCEt4eFwCISV17Hu8XN6|TkG8s0VjGY=W^2Vg;pjfaG zOcAcbVGKNnu^Eh*n;cYfuDz1n^Nq1HD&Z5K%srWh_Z(sPAX|-PR1kGxWU-lf`{q^O z*SR+g4Cjtwrmw=Qjtj6U5hcGG-nnz%ngXD!(RIT^@6Dsn&$K zG!D75dBuhKR6dY7Eds6xMpmh=veYUBS$XW5%T1%1&nzqWYP@-f)kG)ZGuZ)z#3Uv+ zjXFkhV%V4xRi$K%LWWf&>c68i!J>UkrLWUB5RQ>uiQ%n?R|034Hw(oqdWcevgAyzG z9EfojeKCu<7c1>Q6f18v5aT=Z$J|DvI5ux1GCeQRvW3lhQ_;$%%)COU(0tq!uDC)v ztW6y#kdnHD%_oo8HQV7LBXAmx<;26#70=y=Rs1 zpkJXgD4d>Eo*Pj75b58uiur=Uk6g6K6?aeP*aproSl7$;s=_U=`-aOTLJH;!?lLT{ z82khdVH4v?$Zz6EI+?4NRCsX{ET3ze5 zL*rb|FRmNMp1`#<`^Irx4Y;x9&OL>Yq|8DxZ%whglUAeleE17c2>nkc1#$?tU;~Bm zhbE74GsY48wm=gpP%B0E(h|sM#nsj}&x(dzZC&PB(VDBRnrB5PuC}i9tZ2y9){l8s zwBTy%YR`&pTy4FZTiakkJA!8)hsQyTK7rp3{KX+l_ziTuL!Cc|&_LaIG6*3aJ$R}d zK)tjMBZ+mh8bs^sBSJH*L3D3@MChe8i0-eC2(7&akzOAW?t>ac{q+&yI;lZ4P#+O) znHoe}>LVJYZK$h-d8C89fhA5?_f_hA3sQ9=wR40>B$i~n3cmn!0Jn}?iiz6v>+7ZG zWi05Iy7Uj!roXpddfo>FeY;El#oF}u*GtbEiJ)KZ(ht#at=Q}J((_Iv=9EBNjZ2T0z3SaJJcpcKg048& z-F1Ni{!87zA?Z~L_%3ySK+VJ|ADG1D8XbO@{dHN$Af~3$3bQPn6csF>3u22C|m}ck{IglFZ*Ype( zA*u9NtaTVt6aAe`Is&N~cjO>F3aLd3qE8=%6p_~A&Eqjhtx`8`^RGgR(%0bEIIWPC ze^Ikc(!Z%)CLjJO5SMc?^nVaZB&>ym^|Ozc>V(C;g#Q)68ZOIJ7Vq2j>3|n+L~sIL zNFMuyTMl>|$J7PafNu?SjUfG7q;G@2-%a|Jk-iL4UWs&HB)NBn9)FnW_vwCS(EP%p zutMOb{d&MPp$6PZiWcxp2lSw83YJW$3_i=yW!HqF5VK^@l++d1q?Al36+X++$JW57Moa} zdt0-Z9=^@=GQ&q91WDuVNybk!*<|urE#|-`Kqu%)@MKVk5 m3vQ7Om%kmZ(dET&*7@HK4aApwtMuXZHfZtT^$U6jkN*O);>MW( diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/dto/PaperQuDTO.class b/exam-api/target/classes/com/yf/exam/modules/paper/dto/PaperQuDTO.class deleted file mode 100644 index 01ad0bf946a976cb0474fc826c7821d3af063c4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6630 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperAnswerDTO.class b/exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperAnswerDTO.class deleted file mode 100644 index 93e81bb5cb756be1895ced293eb22bcd644a0dc6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2758 zcmb7E-E$LF6#w03H%Z$RN}z=ZYO4kM$$}Pywp2^`DyFnhtb$)`leJk$vvIQl`-XTN1xN?tYkiIESek9Toi}ohHYp_|ncPLgK6q*( z1Vv!?BfLD3Kan@=c|H{g>8_caKy&<@enHprj+xftX3iNDsGl-tGrE(v4S|k|>ml!) z)-$u(lw+Hj*}-8xiJi=69COZ?Hgo1o+8D`XEJt@tD?<-mansUr7xmd$;?YYt+DO(M zw~|JB(zXc9nWr7~f}YOPZRGBi&+dKw;oZw0uU!2~AS@{`Z6g^VYeFFCg)b1T4u_9_ z|KZlk!X>_6zIs`pVb*Xw))-8*v#SCTy>6=#J^L5d)5?Gda+GbzfIQMA6ZlA*3?f$f#jniNUR*41$4vjs@al?5O&xY^}E8Q)0*ShyOf-ZDR&D{|^fhProwYs8wA1q7DNf|aPOD3hG*gH+GxO8qT zyQXsatw7V1qbJUf>sdd+;gp_B$>I-i9G#SAO zoRqDW%^I1cKwo)!3hY<4pYL%nj8n{RZ=2`Ebuuk2zFc9*pCNuzmZiRA=roDwk|Dhs z!4a7z(lysSX#b$>E6v-0*y%{m$1#O9BpW4>Bxap$3M0<*N}S(qn_Vp z-ZoIym_r0jXRwBQHXEfCx9hxH*^jJOTJ)@JKntw|DQ)Fy0bB4mPePV8wH{`u?f)5i3Qt4vBkQO#7^jmu8A^B0_t_wv>b^*+z-VE^x`(j!qh@L@-e9uuVFw=Azo6N5600J8%NjF#jjb$tPu*>Sv=%Yf4N3mRj}9jseGq%Wo{VrN04e?X;5 z|3EONN}b>xL>JH$Q)9t`l5(BCsu?@##ZY7{g*|wV{Ip;Sdzs)mbl@QNQ5GPIVGMAm zutnN2$eoIDmc$TuLF}jfHq?j0e_>4s;%~Huu#3Mix0}3eeUbM)3=H=J>QStG`jE(&#|*;E=N4C3j2nV2ad+n|l@z>RZGM zXQjMV!Z diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperCreateReqDTO.class b/exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperCreateReqDTO.class deleted file mode 100644 index f27b5a4f8ca522e3ff813dc3de26897adc0f9ee8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2440 zcmbVNO>-1g6g_XIdp<$~LnMJQhyj9T@z1=@E(D(KEKdmJ=UYx-H{_!2 z+e>wM!g1Wd3T)T$1;%HT_bZkkNbhE&ZeF!2*L>G8tu-U_9QUPVhk@xUr68zCg&Es5 z{g15WWrA3@_RSMbyX;nFea>@AAkDz?iZygiVCys$!d}`34!dg z3@*kXwhtG&!5D~Pl$;w~fb`DP-Nur8%{(I=>5;)I18b+4NfrWq26UtZw$9j&Jl|?8 zN$-M1E)-*K#i}n_o~`z=QVVJ}$vF~|^FQjw&YU|S4au@F5p^wcrYdl~W!0(NaDR5`s;mSPh08sRHe_Hw_LAg^|3F32ag{4YhmE2(@e5=&;=` z@nL(rc_Cnc&29gHB~HuU1a_>$i?k$f)QdexVnM}zPoQVPZFv=W z+EzW<-;wSCg-&44vxbn3*vE-`^!e(e&%S!};Qr>H0j+`i7XFvw8J4WT;R4?M5?i0IgTHgwOa?Bf1+W~LC;Mn}GeuH6~^ z5#mee$vdMzK$OQuR&hne z5WTmtIj`qaZ6oatVU`RV3A71@uOaDThPN&7(#8GWBBzISCqDE>nxzXE5kFVhE50!qb zsHuaz7N2Ak;XK;aoybFx*EpplV;3>Olynkvlv092cMy|IGl_kioMV)o3MC=DW{~5oXdZUIG`w5?>4(QBC6_-STmIA0Ke}8^@){ Aj{pDw diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperListReqDTO.class b/exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperListReqDTO.class deleted file mode 100644 index c4175fc3cf4f105beb61ff0e43c541c30ca0ea0e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4042 zcmbVOYjYE26n?hJW;f{;YG?~lRKTje8t<1BRBnaTwA2==;C0)q?LwLjn+=M01QlVN z(HR}oA7J@_BaTvL)N#-cIO8AS2dE(bLB;3YceiPqYC1A>bKY~#`<(mP{pIg(e*kbV zPHJdSaNmS8oj&|R+Iq>HPER}eO2I0pOJ>P((|ONHyVk*qRrb=uf|Ik$-iUQ@+wNT& zq6(V#n}^JF!7NUuca872COi!>1uZ_;cG9DkYnui8Wplh>QMv3N$1JyOJHhD z1x;I>V%al`-k4daSSlS8{}ctW3NK{y3X-|1nNiQRi<5l{QX`e3XHQ#WcG)KU=3>$D zOpm~21)Vt>FTZF`PBI3wDoJlH*@I5rDh#_0gYga%M?ECWD$uWdbo%n~^TI1#glxN3 zJ|Z2_^H#}pJ>iOe_2}uVr%ns4n8=sU`(x(V@5et4ZkmN5bDDUD#Jl{-xhpegX@((s zWUrbROSb4)^pH*%e|-7z@9&?#a$@%Kn@1GHCoOMJ5PVBV=e#R(;olI1pDi9*A_2)< z!I>U+4y1QjMa!k(JdH%RGW0kU++x5$lY*5wyJ!tnrpGOJw=7XI=S-M|F_UFuP6KAt zo3feI2Xg@dMZJre^L^9MPH~F z_|i5XJ#fuIZQ%Q5Ne+?SxYj~dvFhY2@f7Pkv+!Q5)#F5I0!1ltX4!oz~M z!@!NWNl;k>9g=#?K)0j@4cvj7I8DyNSqW^h`5bS`aup;*CEJ5eZ1kCPCtnm!oFQf5 zvB?)!r(lH?R~e1ILO2k??eHjXyFp161h=b_XmhbrdLEwE8-vl}!oQC>n5ZKYiF}7j2KlvT@LW3)VemmP%HUOQUywiv$x~JJf;2 zJ{=XdThF>MfK57HWH0utlTq+^*q4W)knsvzsArvDSKq1Ega@xLG8}eZ%`j9AzsbaQ ziV)s1FeN&Q=^qp6e_KR(lnpfMRNM)x-xmA4Wl>u05IIz^zTWcXMu^FM$2jsibf`=nO7R!Ub=!oj5do9S1Kr*-^Y&%ZQjg}-XoH`s8NL<8FS6e^(CxAJL7 z1>A<)c~Zn&*8%EW9uU_;9iX1&0dcF;0ZK0qhzqR_&^^lox)1lWMHVMJL+}QX-LCF) z*zgsp+HAK;jUd~i60)Hlptj04u-{b=)`#z0F1+l>0KUbCf2clu&vM~qO9$|6K76J= ze0sU?awY=!H9mYFHrC7iJHZPQXHX+& zx-UQ(?CF}tBmR-ZmZ2U#GSS|j(U^)}#C0<;dQ;I^YzsB|Gb&a3GqIE^bYd5goIz7c zO~vLZ?aXLY+L_T)no!aMB`u}TQyR#`sWgyDq~by;5h%q|iFr!7Oe2+Y86(vwl#D=$ zRHzg^!_Xo%o8g!Yd9GJ4VFXGm@JACst@s z{z99E2>; zV&C|e^pqNk1~M^U6q^&Vo8+xrM)O5%q~Mn3i`Fh(_7Ul35Mu<#@jOh%sNx-rlM?U2 zBbZ>^5!}KTbe>d{2_0lC zLJbu{o#;YVpcb2_R@Ge04V1No%2oX(1i=-(=1TR}(lTCTn)t<1TYZ#8ysUoqJJ@@Z z2hL+!RC*Srq{j#8oq|3j=>b8%BUzYTiS-hHjgY+zp{MU;r8`Mq_pG!+PQ~fG9 fk7G;k%7tGA4J^GFhj-^be2(+P51;pNf{%XyH#^Rx diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperQuQueryDTO.class b/exam-api/target/classes/com/yf/exam/modules/paper/dto/request/PaperQuQueryDTO.class deleted file mode 100644 index de53a1344c970dd39d33b12c59135ffa5d274262..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2398 zcma)7-E$LF6#w01w@K42gxUhJhy{u^{a{f+B&Enl`3N?&rL_uAZj)=XkYvMVgYv55 zgAYDB+|iFvwe=bVBpO}Gv*dAI3Dzh#x`QXu~H z{^!4cwwN8IsF2&PEJT^C5YTSc6^!^FcfNS?)wjwbF(*AgEv4`5OE&}99Rkc&ZZ(0} zF;;TQv(63kf~-i_@??Qnw6g@)3V|*II$8v_kJ%M@xn7=??zF`$6&Ft4D$Q7~t@fc( z^NKdpJ~p|SRcmgK&t8{#Z#aD|!C<`x4q`vK&0Cdo%33L3Hn1JZ1kxCYp`Sq-&5*ND2sNZI^^GSY5{}N>{*84E3&bRJ*Tk>|6cgpv;NjEZDS9c~<^L&Z>q? z$BS02sH!9o?Mr7B#^VNF$1#SQxRTACBbF>PcV(?!@|ag6hTa>vjC)Sd#4(%}*wx4_ z(4MK=rGj+hI4iJw-RSg%35+Cg3g--*$6m%dVOMPLq*7fpki{jctZG$OSb?EtW!q56 zFywF?V=UibkHR?;$7SY{R&FN@ys21b#xn^-F{L6;vO}hvx|^5hZPl2a>#!bDi3#l6 zY!umj`*qcJQ{c>)`h}{+W~ozk2`o==_dC1UtDZ z6QB*dxEg^0b|b}|P;I!0qwcLadI5Wx+j>M9I*%v_{R2Os^8uxekah+ZAtVJi;O0eI z>+DaTpq|a$cW>2wKyK*1-FMHqY=ZtzB2yJA4)ouJuH75>8RARm(R%|wLF5Me7jVGe zQh4d|AeW3b^b6Wj+GFgPhcT4W7SOkBF__V5GMH&e>B^?%F*@eap3+k-%SPHg#)@tz z*~I|E3O_|0@+;kiDI8`QBk08_UZF0Eew@Uslr&smx4lM5M-JWm*JqN~qx9c{)>!;6 zY>Pqsjh!*1`5ULWI}lq1LShb)7)`x$O^7+p&QWF66(b7ue^pgqL9G+3>d(;oVV`zB zK)kxXX?~+lr_)Sw_=Gm%le;H5TqL#e)LkoE0J*6MaXzC!Pg(q=EIFI%;C-O+( zHG~vp>Xbj#=J9lXosUqN)g^#A|> diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/dto/response/ExamDetailRespDTO.class b/exam-api/target/classes/com/yf/exam/modules/paper/dto/response/ExamDetailRespDTO.class deleted file mode 100644 index 87c8c89881d95ce7609d22d989aabf714dbc0666..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4076 zcmb7G`*T!h8GgR(*-MrKxj+IdsGw<0vZO1uD$PP#%B3!BNScIbvD%*Oen}2Fd(QUk zSs-2!)It?6t@MJ{TBlQV2B&pKw~QSf{iV+McNm)f4{CkBbM|s_fu;O!f`^(<|Jb>5YXcO39a7vlQ*^E4Ilrkl!ShZv&Q#Q)d%@jQ+sm zGfZoOq9apdacBbf-u?EtvO}yuyK59pCvR3ffzJFHTaO@(3>+T;2GPewSE|Yic zIY!aFbmjN|{_D%{z4QF-S6+SZ#&fr?y(OR>W~@o@>8{h_M)xPfV9_+A~KLBD`b!&5AT6~KEMq4>GxY)`TxG(CvDaij&h{FK5<9YeT} z+?%#H9TXcx4CS<Go=<2aGTEau~wThYeBWgTC~lL~o8$72d9VCk5`2?61#j%&4U-5aOJ z@#dw=wpN|j7uwk!z9K9MAmP;)KthrL654-tDD8tT?E_OQ`LLeCqCfOHqo9qiYNO;bq=bAPd+SX`gpW#57jpLHQ_7)X^ z_>rn<6{VZN4+M6tdHVXB#2ifGBA(H48CMwE0n;|UkyVwf`%ydTB7UUf$GA$UQ7&^) z3k-$ibsJxANI_0FX_t{E-k-#ZTZbNZeJqFn~Jhh zaLuxMsIiBws@~QJ+SD50Z=7FkNT8knc2b+<*QN?|Y(9-GJaZ@98P(Z9aY5V})g7R8 zTHlIo#I5qx6X<&xfeDRzVBi+E=hK5Ve7uG|=}w)edukY{A(O7*bGPtCxeW(Ow=nXS zAN~>kcJnIu)@sNjXod6#KEk z^q(>IN1h^3)P{2o=#15KRyx&30;h=!_)wArC10f^$`#|c)e{?cJh4&7sx?R~ZRnral+xZs*A3`HDXj+CK$yc(Ld@Y7ks7rk-J@^6C29l^0Zd~CE+ ziR5bP(Oyd~9%OW?f1`?3l~mgu+P5*XYIq%n(`;79FCCvoUR_-}C5zGMsm|;H?Vw+v zU7gu^mM77fzJd5q4d*~t9Gqlf|0;sy#x_V z;2ZcRqm5!5-{Pr_>-q$~%?u*kcK72uJZTugc6^tos88}a#6F-vBgsOLSpM??;jQmB zCFnu40cc>fm7+Q<7J{{qtEB`pOg?mLd1N6Y)B*e6!NteBzyCIVsJN`*+3ugz@H54q zIzJzr7u5M0&o#Vww-vXq&XG{B={inZ+x%@@S989$HCAr(HvGy*z0!QGe$6|48DGV3 G`160^on@Q= diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/dto/response/ExamResultRespDTO.class b/exam-api/target/classes/com/yf/exam/modules/paper/dto/response/ExamResultRespDTO.class deleted file mode 100644 index 6973561f019bdd7521db2eb8fac7515a283fe88d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2349 zcmbVM?{8C87=BKByLQ_J%3#CFbRvjryK((773hYJ{eWr9#)eDelXvZLz0lrUZf__1 zX5tsWn3y2J7-OO_;)g{c(UFYA=od}=Kjz?nQ1LmpUB}uo5|Z}ZbKdiw=Y5~&yzlwz zzqMZh3}HTufWYyrQ#6)8FyvLUXcV1Xr69{j$t+3N$a#+8%5urE%hH(O{;Vul3LeMO z_=V{(G=ZZ#pPo@T^c85kQb}87PavAUWG{J2VTNbk`CnnD(MEy>Llpy;S^S2lYCv;|LD% zzO$x1p}dvxsE$2|cAy`LFygFfzoZ{Jtm8R#NH|K?#!XdJj+d9NK&O)T$YyKkzO}yG zHRqYx%Nes&yNgKPEa%ld3IzM(Q!4zBj+gNY@n&YHG7}6qMN+&BcBw$Pjui2nInTB1 zMS=aBW$0&HwWh)t7C5k#XVrYVVij`Ijo=i!sj2<@t67h9AcePdjN&vy4_mh7(S4hq zwIK0%1~DdP6NPZtVaTl@## ztzY|eeeLs&+jn{EIa$uSR!O}^IK+DL-w*^;XL1blMF}8+c7CJW?cl1j3>~{JVmEi$ zytD^vetXeHzcyO;@w=aYgLA=eDDgA8Z*da90glQA=)_YT^{NA6c$zEbi(Y6oz-O8O z(?kd;ghcWebl>JI*o4?q^{64LXo`%$v-N1o5}~D!mJmzU=f*Z6SR;d51Pjq^ESdNo zA#El3JH(d=1y_>4L1YFJt9agDa`M8t0S+g%!9UR%)BeETo6rYi+A3c3J+zgU*$!3V z>)DPWi2>%;jbj+3CIL2mALj#1EUY*bp!*HRTRR8K3!WK>!;$p(GN*zi2sDA{MUX$0+yriQf_%A zK*n3^fKVmKCTo%D7(G=b#_l5ZUf0MSys5HX#aP#wRZOiSy;I4?YB>tku`R&2YX1(V cRi!qIyuJ1VIPZJS*4u54XV`8R@Ggh{0l@wPeEOi^@17O8HE`-FPD3CLO)x*}5a$nr*pKUsR^N>3U1FT)w^#h9+?C z=wLsFz5;PqI;K%sk&bKH)_Zf81;jOht{iiFhUKjomAVWOmih>Rh$D^4yit_`J^7o) zx}jGLYfWGF9Mf8x6i6=BEzhjV71K3WD{{uNY|rqR+7(FUO0Fa!`~=I%kyJZ0rLng7nIEY0+@l1&@8BNb+{wsPM2aW?}WFEP9iv z8&R@36T?{yQ^ulU%_?tYJQqU`dZQRYI*b%kw;I|Aj^Q~KB<%g&Zf0heY_BXGj*B9H zwlx~vzI~6OYuPi3w+cqBsaB+HxMiiZKyV~Aryz{Q@G@Ru&c&sP)lfWCT};Jf$+d9m6?99=@uQcrnU~lY_r;!00t03 z2XA5j7NLdX&3laZINx2gbh|i?_zj$(7h8^A+D`I!6_?<aq`yN*+sOP1@eM-3jm$3)h0*jTp7*ajyf8n?$Ap&s9i2(-H=MYKST?C` z;zi#>+hCgDA(mr}^t;${$Y7Lg6F847nFqLWLp+Z%HqB_ACk-z#R{|a3$lvIu$p4@( zj1m4t1f6|S8Isb}wzeTP&iqQVkYb}?Jx#LEF02s2C|J$xSzj`48bc3u0k#2-G>jo*nYj~Y?LmY_n0UWuY6}+?+D**#%<{2`t49rHvWZcs ig=~|&HQ`&h)_yMcPj~=%zZHeuWtwMNF4F=Q`S=g>+>m|% diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/entity/Paper.class b/exam-api/target/classes/com/yf/exam/modules/paper/entity/Paper.class deleted file mode 100644 index a7b34c2d0eb5f547b7ccc3509d3aae09573d9de2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10799 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 LVAC5%MECyy)d%=z diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/entity/PaperQu.class b/exam-api/target/classes/com/yf/exam/modules/paper/entity/PaperQu.class deleted file mode 100644 index e3fdd66c52f7b09294b298f28f0a6103584041b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6674 zcmcIoS$G>)6+UB2nvpc}A}{H*X_|lvUaJylfpHSDGzkiJn#8H00qTyeu{Dk?+0w{K zD0>_BC1ooVC}nG)1lmI5(1p?hO`*UWPw)b7yz$J(68>}V)#AvG=7oH*=G=4s^WS^V zz2}^fUj6U0FA&k2=#M(JX*4ifTuh&tOS`9?#q?q^TgkiS^pdmWmeOv)_xv;IBRn`- z(J7?SZH%6Aii=*hSV=FQnQ?rtyp*q$;qSYJvR5pmomt;oaZB!Ov6M|u6tiw#qpq@B z@|^sXTVlvvnL9Mn4r!FwS1go$r{GUH`HCCHviP5-QJa_5C^^31tT^esQH`+o5{O-3WcJNMSw@6(eVwJ=hSfN;|}~XS#X6{cv_7@{+T5_MgqBK zvd4jjcXZF>Wai-EY2J)3B9_6TZw*8u)^Nac^Slg0I8XDIL(3H=2`^W~FtS|X$u#O| z2t}sgyYp@djyhm+>4sA%pF+&x+X&rTEaqLO0BA%4FhjXm@-agh#{=RxPOIYNC*{bL zqiJQ-z49?{J_oqrm8VNm49~khud#PvuwhZP^SMEtPo}W4&Iu*Q^ToxP;>q+ux8Rl> z-{t*>_TiF5NuxoNVieb?bKEPqhbxOSZb<}+uR?Ja*T=yn!r>`p$j^B=^&t`QAXgZ3 z#jtvDp)*;Y@m73X_BvP(Q`cbT-gx{gU45bO4sbR#nxU>4`Y$~#Qj!paVwu6}fEI%v{OY~n3u zNw7Zogo2m=lgmM$b2nEpn# zYFwBu4p2QFYhcxIFpRk*OwPcY$Cja0SF(cv^^M9!sqNufyUVz}Sn8Tx-8r-1&iZ46 zCt}$DdrW#SodD;oQ`paFR!*BJfVaiSp;?_~u=#qWk7ZS13w zXVP9Noiu5`lom~TyTlbudM%|Gw`|faQYxGD1}Rlc+CeFlzv9{gr`C*fD*8FMgaGpG zPE`wlDYUg=LKvOeee00sx*{q7GS_3$s0PxYvR_%`s7sPI2D@AFHtI|PtCfa?gw)2m zG~=Ea$^udP)QY6?sg31oW$ja|l>-?Bxh=4$)rf7QdrbPy?8ymdN!0@*=ah3?OEhX9 z7|ihLK4{YC=<^8bkz<*O{fK%7cc$c)D|y^9y%x@Bsvfy;N(L&DQdQ7Qt*Mbls8>Szh+Xqx8miqZponU;=o0!9jy#_*_|FKS?(hnpzl&8rFzJW%I9KzfCAWZyMjO*l)!^o`tY#TA=mPR*WUE^5PJ@1ewT^7% zMPu+J(vb(8*`KQ)hyNIYN{gjSuSETBU`H>1@k4rEEO0&BWC3=WAGe;G_qC1 z8lzvJw86E0-=O=YShR{d#xLO<2RR(SHtAcOOE~SR7`4-7j@WO2o-9^Mv+e;ekE>v+ zu-?M4$2umx`GVtDxcSX)+^etkI@6Uj0jDz1<~$cMChR{i1q~|LJMv|bRZZJI(Q4BOfaH%&^VIz>YHtYyp6B&(C|eX zcnVVU)#fDR%Py}rOESqPpbew6A+t3)+?qZelwQ^dMV}P(cebYA9+X~I8b#kH=#S9R zR>8SFD7~y#ihh%zKSq!ZyCrI&q4(QgyEI}AwHj#y#FL@rbEJSD8K6=?v?**ZXTwqfZEG89O+j0RB7jsldkV^)+wF$IcR zu?EnB9S3N^Hmx{=Oa+3}0Lt45fbw>Sm0(bZ0wt`D22jE71gKzlS)B~(QlL(&s{yoR zcLTI!C#`Mb`L-$yVvSrP_F{@SiKD(-|hp*xBIO=2K6gYpVeOlg)X2X zwl}>R{9T?^wSH>nXoXJUn)Ye;(P_LcwBdy@PiLTmuQo^TgA}5JT88d}6s8GnAH5$^ zgz{R7J^)FllD36D2+5!a=?Z-aQj{K|f6|8`#b}lOOdo+1r|0QU^ifDA{e>>l{g4v$ zH+q5|fYgDvmveL$Ql}Q7PtnI9b!j)#N%}aXZf%%c`UIq;c8CtpCn5D{M`$;Yr>Ive z;x+2ikovR=D$-{l_0wmu|I@ThH~vi>I%)r*ew`frHy~ao#pwS{tk%R8Bu^a!>6@Tw+mNK3-LdVz151!X_1!r1_#%xnrVpBGJ&*Ac8%=_?G(wkxoa$k z)HAw<&yzm7O6Trnebx@K!3rsh!3il%b9Pvmkc+~}u)yV=KGOorqAjRmfw4J^QDNg@FQa%F7!7r1=iPs>-cpH%Ef4Mse7$&Q;yN~ z9P7Rtnw5KO1NS<^wGfIVzA;Iirv*q+nb)MMv$e)4!bB^=I%gm#XmOwMi$HU=KoM?- zjp*!i^yuBm?_8qqp)wR!>3s4>_<+2`@{grlV)+Rv-?K_jC7+gZmgQ9``;7Uyl;>Fg ztdw&sKQHA4mS2!^p5+%IuhOrs^&R4@N>Gh|%2;P3^>4?Q=;ig_b=H16Zl_m7>HRJJ UPCQ=~zZdX(=kM`{-vj>eKi2!U)&Kwi diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/entity/PaperQuAnswer.class b/exam-api/target/classes/com/yf/exam/modules/paper/entity/PaperQuAnswer.class deleted file mode 100644 index a9f9506121ebe1e2875a2a2aa089fb7ec3ef8ece..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5607 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/enums/PaperState.class b/exam-api/target/classes/com/yf/exam/modules/paper/enums/PaperState.class deleted file mode 100644 index 62dff97b56bab9fef1858762e7592bca92122ae7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 481 zcmZvYOHaZ;6ot?5Dqyv|6&2lr3%hZrF+l}wBtV4V(hOxFC4G?668%}mjd9@*@JAW% z6cZLYi}}vnJ2_|Oetmy@0yx95f*8Yz={fq#R2R?O(H(CR+G43M_(J%)a6@OQ_oW^L zJP-;J47oX9aoy(bOz(~7!VDPVM)#JX*x7UpHxM)7pEIN%o5t{|*B_E>8(m{?*ScXy zUOlv$_f)ztZOgTSOERf9MhuB-Zz8hTK~90jkpE+;B98)tvf_3qdQ*l<-Dv!ioB=~g zMG`5gDk_w<+EbBUt9=z2q!_f0<%(|TjD5{w-z)Ug(>mZOI$j zW+?{S1 z-x^~~O#Eg-OpHlC8{a}pYy1KJj?#Yg9~hrIJ1i`1Ax^S;&)j>?bIy70IcNU<_rYHP z`cW`YCD5I6bJps-rB-Cl%DL%cRu!zg%q!1Ybd%O)PsycGo?Ug525JNv7Uimb*m^n|8t9)0@YbJBXBCA_hnwD7L>)Ej7>AH{fkzDZ_0}cv|TSc zzMWI!&az#wlUX(7IIb^!+jR;8O^K|VOS((em~xaSeU+w(8N@fEyk$G31kNR%pF^Rf zWKHXgLJK0ahEC_6;qpQdbRq9C*m+Op)NR*WvXV+V1#4cWeAipGWI0A_sOY=5Z7&Ec zI+)7Zj_qF}0i9iQ0yV>KTE)w?x2-IbiU*brhzcaDT`fyej z3h}OenXLoUG+`hra42CrYO( zuc3Djig%X@={3}fN)>(j>F5js-7byM;Dnbu>^i<$@#C7N*yu`1<%26X@QT36%5o~( zl-25S23-a^1&%*QHH0_OjUHAE*<@XgC|}xHftJn^f7@Y|PU7`A3(G*Cz~M^V(z%Iq zcvYa5XxG%Lz>%kLxE+t-b-ZDqU!buPgoh^1<4qDogh`eb{SadNa%X&9bpgUf69ZZ` zO4TvXE#`G>gC^brtLs3RkM!k)%=4n33S^{o6gTkpt|pgBJ8S!^L3?kt2e}EGBZ|xP z>C3{BMu=eqR}73Y)yh;tcoSoIhsDlt1WxZP)6#HYoo*)=ZpCmF2?N(EW=Sb=6BC#u zJIgX#R8#Z&Lxy}sF)h&7Q+_soUVHrg`lE*rH^2GmpFh_&@7{Ux-B+7m|MK{UAD^t< zdGz4!=C}9iaUHV;W&}>?)b%W?ocYzlq917Ccp z{d}k)J`y%8x2uqVEpMHGF$H@V?2NTJETx z4V)I3=-oiCz&c)=+>$N~)KKJXZW>z0@O_LAM1Dg{)6@put%8=`Kf8e&)q(hNYfV|c z*%}Gt?mzIE7L!%j4zoKTr;UWQGmK;WKaO68d7eQIG0X{ud4r=mO?q_pmr6l~sW4n* vu)rh?+=Puq^3{l0EFsHu+A)qCr5Yk$ghMF;mlzR2BTa2S_`g-Y6A$v?-bhR5ft;^z(O1qN()rHu zL2qMn&bnaon4w3xm$C@x9I2f121^32{{MmUptL=}FcurpFk(Dr7X5vxUC~|C?mfM<&=2?W!W)?NQTwiX{rr z{pWpCKixm*nb!&=_REiJH`zk&NC9tnw7AzB+_i0Z%W)@0Fby-j&NX-vFw5hegE{DO j*lECg+=AHX?_uE{vX~&Vk@X3nCE{V`TuSruZHAQ_fJbLy diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/mapper/PaperQuAnswerMapper.class b/exam-api/target/classes/com/yf/exam/modules/paper/mapper/PaperQuAnswerMapper.class deleted file mode 100644 index b8c9428c1df28e0c44d44b1de51baa336a5992cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 706 zcmbV~OH0E*5XWa@YixbAK0wccpcnU2yhMbG3PMV&74Ms5O}8Z3xR2U?H4lCOKa@C0 z)mnUj9yYTxv-1!0n|XeDd;)+LY`NeNXoWJRlRL`CETyT8Y{E6oS9)Vh4#2GVIaRTyRBFFyE5F#UyjhUx#J~n4J zUGD_{zI$ymBT{}Vvw0;1Gi~oijf^hUMliy9QXh}3NcA3 ziv$P`R^<52dvE5=^ULEC035((1PuoJ1EYC)%f$m~u1yw{aJ;}mSgx_CKIhftB6RCp z1XB!_?{S1&VLs%&{=FFZ2&NhEim8uA%gh9>%RYMP3KbkZSTSKcK_|vk4B9T}F@YQj z1{=G{2XX4H%!lz_hr!lm$i39!S~}TR;v6k%;e|cUbK^Y`&TC^6VgGPZ>BrK@7@4_d;=DD>ipY8VV6se<>^ z_1AO^N}*`Wpv~ZVyD<#OQ5v}jC3lS?B*~vk>>Xd7+12#l*g|QLk4Ct{2wtZ!v>B9} zvK{7%PI#WU`F}L5DjsYpgQ~`t|ngBnBZ_(*;<3cP*u^atxxN47pc7xhZZfO}YM> GdgBESb5*PW diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/service/PaperQuService.class b/exam-api/target/classes/com/yf/exam/modules/paper/service/PaperQuService.class deleted file mode 100644 index c21d32b204a9ebb6d6cd5a95b66e30bee4c3d6eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1290 zcmb7E$!^p@5Un;z%w&NqgnhYiNDk1E;5I0SD2g;NF!3mjzWp#BeuimTb-+zAo0)V&hB7}gzUMw?Oo>KmuWi*qCO}VB8E4ZSX ztBHs?9k|m+8&$^;76`1Lu?eFo%SZHhc*bKB!V-ZuF4vIBOeE6MtQ;~Ubdg$(*$vON zkokGi-ZUM7rGkw_J|ggCr(XvXOT{TG1Wk-Y49@3-j}Jc`cXz#CYat($al;a380}#g z?-J-lVw5vu6({iHhE?7*z%-eu5P4P{p8Yuy&6OGnQoe0u{R21OWHMliVT)X80xPM| z=AiTv5qP=NzYr!e3MoTq-eiqPX&;@Dj=>Gw=ENBKk?AGK^{L2{gYrEu+Y7ZJtjpeH zn&(ECayEj9ePL`}l@(i{!hBliRa4VzQ|x{w5R5H>Rc*6sc*O+gV!Mr$9)UGx1V z@3-j~Ka$E*e!{g)4S}z1!Iy~tAEUSBv3Qx*K^U(@4SsVB8kSpTVq_G}9A`Co!D BevSYD diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/service/PaperService.class b/exam-api/target/classes/com/yf/exam/modules/paper/service/PaperService.class deleted file mode 100644 index 32ea8b70879017292e24ed708587f205473906c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1427 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 Y;A*vQ;u^0FT*pn^VX4apT}uAG16}4Ax&QzG diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperQuServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperQuServiceImpl.class deleted file mode 100644 index a6b9eac58e399057d0d688777d6eed16fa5b9b90..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7339 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 e@JE0AC;S`p diff --git a/exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/paper/service/impl/PaperServiceImpl.class deleted file mode 100644 index 0a620d7bcf5a6d42e40159116fddfe7618dc7b4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21769 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/controller/QuController.class b/exam-api/target/classes/com/yf/exam/modules/qu/controller/QuController.class deleted file mode 100644 index fdd9c9ed78ea4cf1be7123551ab05fa893d77da5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11664 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 D#s@If diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/dto/QuAnswerDTO.class b/exam-api/target/classes/com/yf/exam/modules/qu/dto/QuAnswerDTO.class deleted file mode 100644 index f48c0038adc8204c444016536fdef5b0f71fe8c7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4472 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 fU7Y*+Pd92;%J?FgV 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 LIr^(?PJjC^#g26q diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/dto/export/QuImportDTO.class b/exam-api/target/classes/com/yf/exam/modules/qu/dto/export/QuImportDTO.class deleted file mode 100644 index ac1b86d73d7d717acd44933100c45382cc750e8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4417 zcmb7G+jARN8UL-lt6j+}+jZ)+Y6DFhQ+$mm_pa^GG>&5%*||6|v=r#t-r7o}U0YhE z4Y!sSS}1f1PcRHG3^UD3W`G&$&H%%}OPS%3CuVr!iGLzce&6m{t!$~b;<0vr=R4o! zeAlyo|KA_}4B*pv%S4Zcsg0moy!ArSd tHEZY;?;}0jpAk)khT-l!s6w|VpYK0 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/dto/request/QuQueryReqDTO.class b/exam-api/target/classes/com/yf/exam/modules/qu/dto/request/QuQueryReqDTO.class deleted file mode 100644 index 53ba3656894d74c132065af53d8fc027745c1d37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3839 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/entity/Qu.class b/exam-api/target/classes/com/yf/exam/modules/qu/entity/Qu.class deleted file mode 100644 index 7b94bc55fca3c28334e96004e40cfd68b22b237a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6122 zcmb_fTX!2*72acMG`fs@k?kbYgfwXth;LP(7hs%(q`9GBr%9X`k`mmpG_@zz#g;~< zE_VvF+$j`V3Y1Hsff8s7jRS2d@IYCMCm#9)FYp6+VX+pAwSe&LbIwR|WJh`+E7t6@ z_qV@u&OUqZGxLZ4zVs>)-9f)Ls7s?AxpFbHa(~8sz$s>m<$SH+Rx?Yrj9c8q8I~g_Wl#5=zT+0+!W*y(FE*5H4`1x+B>Xl0wC+B<1ZpF=&EBVZ1Iqw!U>aDsJ z&nZm16^5M69@a=Zu2J$(xm5L?l0WSfYOapu@IOtXE-$Z9YT}}^>|_c~X)ZJ6SG>~P zxJK6L8dg+vr@g8-TW}ASN@X950FOpv6B{nispB$d9QbAP;L?|QT8+Z~$|4@49l2-o zXMl!x?BLW?_SlIT-b`ev##)W~o7S8y`R<%s0d!AC%wl0jJ-5JXGnQ&Ia#?!8UFI0- zUeTGu6h^KL;*zgXJXdiY-#vqHAjER!n(q}dhoJ>WLfU6IUO?9t^L2DW4wNZUaf?o6 zL8GWsatbR|55d&uTtACb7}!13w5R$xY*puwEiJEe5~+zoxj0*1$Q*M^ZUwXQmcoaS z3^CH^jV8q@p;6C-S8`9(inDG-?46IioI{#8NERHDQilC`UeGNfh&M`6%n`$?PpPvQ zT(k1vGUCEV@a;&(=?YE&EN{#ui@pX>kawJ!sN)rcXe7P@M?t51Vu|>-DNUo59_! zM>8~yT$ptI`EvfGQ*nx}kD|i_a0vplso5=v3;RU@67i6thywNwt=c=bz=Nh8_baZ( zhM9;_jg89L<@T^C*n&-=a@?hwQ@{e(?B$->i*C*zA37h$uFsk@O;cD>&M6&XG%Md@ z(g=;l={&vHpnI|9Mz4_0CY`1!M!wIa3?ntV&!io+lciac-Xf*ENq0)=ev{rtZ)fYg zNqePq(WG}sYr&+uX(!rNd2M4-E5(_V{du>7?QyoIgMMHNZG9LQMpe)WX;ULZn7Hpn zrJhBJSB0O3e>EU8wxsv+E6e|ifI~MqgzhW zP$Z{(C$})^EUIFT&O6n4ZUh>Ib`NFw06%5YL-Ywm@Z{<2E>-1>0r&VbYpo@zbsptL0{Eqb0dkQ_U@Wj$h(y& zJ&p-a)pmRNeQ|n>zHZW!bQG$+Udi+Kv+A2BeT$xg%2`}=OIY7nbCIdG+1g3f1mjWq z4yt5yhs+x>$@iG?>FbDs!f2`c2GI|YL8CiFtoB9ek{F3lVe})U)F`fc(a13VF-jHV zdP+d`6QOEE4yxzG(q#BBd;v*5x+91o6hFtA4RH{znDiAc5}fRGoI>;qj?*gUoGRBU zIrpenz_A;rYPWHmK|1Bll^nlTf%e{wugDv{TI_9qDeT9!klC31`Zt3UXqoWP-NMXL zjdr3Pgz!!hr<+Kp2u21*T@=M1?l6o^j8k|fq3Nzd+2c|#^k9+}*>A6YO>9+{_NjlLk_I9WAviGUrSc3kZ_VoKYrI#I4(Qgy=;0f9k*f(iYrjeiZ_9Bb^@TBZCVKinF<7{3FO*I zfLy!VN;0Thfs$5t6KKxv0cg(dwR#xTt3W+gZxhI~`vCInl-0+elmhixsV2~Z-4D=$ zJz(`SXh4Dbt$_d(zKm`ZYPn5cm&XwFE^UE|RKgh!YSUE44ckR&?HDaW7ouV9AT2=( z(=jbg6-YWwYTKy_DMAIhMm{71mVZ$VQj{L0KhZLz7(Gs})B7RCX_cr@x9@FqHwnLj?bfPqP-)R z$QWCtPu|D+3wD?dR#;i0Tujn5W9!0%IucG%OAkzr9TBET-Gu6rUOC$kCKQ(PG6Iup zM};X`H=*35*PI;_CRCd8iUlUmjtf(~ZbJP@uLV0HOej6&l@O+F>!f=7&ny(UrFNCB huK#|p_Dd~&v1&{A;M($?NY+O?&X zTXSn^p@nj3p@lLGFAOuyOJ;x>>dpYez)P9oktb$&;)#DEP`ns0XT_wG{h7^~#NkUC(be^0wh$()x9)gu-YWUdmR++;Uag#;^U8Kb!BE|< zIaX!at_kE?;k*LnvVzPx&#n8G>n~fChOIIv`KKs|Ib{Xe;&p4w%2zCREx+W~9CvL- zL2j|ZxT^NDQ+HM?_N?oAK7$~Sg6ZOc;aM$Q{;Ea4LYZ9ZmONHL!r$KDZK^N#LisAu z^iIt#Efp@!ugGQ+n~ee^eyA^oAb^XGT?t~?Y^=y;HK)GltgZVB?&#R|S9^cCE#eG-^0R=nz} zcO!qvcI}$w+Y({o9BY_@f_n|5F`(d3(Q)nhMs?M$1zV9yc_miYVvU*GNSW~0C7`h& zC%yZNPtq9s6(&+1HfA6z4@=8_nyDGywW(%u1U_Y87)O{1flGQsnKy8($-z#OT#5P- z136I-5IY+sPV|o&xJ&eEJxt;7Sa$};m)Xp7w!iL`7p$69wSBfUBd3c*&UnSS8Sjx! zhGw`zp$jUkqBumsF(fXUAt^}On+>Z%`dyJcxq96$`7`5Bry28E1LyEK2}_oHLC~VS zU|<{*Xht}JD zETdSMGtXbQYYGf0`e>_{Gl9Cj)HtsX!T?pmeB?79l#!(?H}9uEOWE4nXvr z_B!xvpNhfIxvj`7`Bv%1oV5`(tG;g4*QL=F#K*=9lDjnnWpJ%7EEeW2aPI|Hq-NI} z6*+P3J;g`m{Hmj2%*oN{bn2t6Xi}r?2kX8U9!3o;?9p~*LhadxQz_du9S!EPIeN#O z^64~cc;3JZc#Kh;a$LthBdV_$_$t0em9?>9yNqMHv*n^=-#rPU$IR&X2Ag+kL}EX! z<0ba*)JRml;E^v2|0{cFn;qD7JleG1W{Sup#Uk%(0dJHKuD{DppBiZ5i`m}$HD~aLbyx+rL zp0dKbI`KP<{Dwjd_wgza3F>}cjSzrQe1a=}Li8khustsW6g_D94C)`RFoe?%OB zJ%}FekBIZL2hqv?h(3kK*gbozW|BN6Wty0L43jIqTO ze5N=3gZ6aCW5!BG&=9}DPD_ojciUwS!@ zE&5zQf2KG6$$shOn78Qf3h4RL@6LTJ!LB&O4!Auz@h;TFt;xSY`8m}1t;s(_nVXu} z!ECUkaDIM@7c(*aR}AD5AK>s!7}L4L4lXtkmra$B%VsjC3MTmhvNw^*skvkasAy^g z6-_;-2}qAXT2Ai(&6_EL=FN02C7^T!O6AfWpapY)pas*&4G74HK$JQ_i)MzPMRPEh z5zt@+%H#%{pu{ciKi)Oweir7XbzW}cDy}i9!}vFrIr?I>`~#n-F3!32cYJ|Tf?p2r z;VDWg=J0DgO(}^A-ozIvX?(@Kj%O(8_z`a4OO#T02R6P;DGdgM6-op6BWv|6B?JHD z`@*7>!M`}MS1Apm#CVGs*7VyL)S&zaM>JgGf1Tp7P)z+_VzbS!vQZN9N!i^foDBTK zOh$!th-B=b38S_$rZP{GvFH#j2W`l&D!T3&V6i8tOOf>5p_x;O(?PQxADUTbtLa0N zH=#}M;JIf-f7wikA(x0Ox-?*DDw=9wV($e`dQNSc=FMbaO14bw$k1!S)B+QmG4j%y zrbSZ^OnS@27Nytm{Tt?)a0k)$Hhv#NKS3F_h2m;G5ZRh4Q@UUk&92k-rnliz2_y%MQN(QSa_+Q9~&5ExS)( n?JutP@y7o1efJkvoWnzo-;eQDaDO}aV3c|P6aM%?_|yLZ4E{kI diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/entity/QuRepo.class b/exam-api/target/classes/com/yf/exam/modules/qu/entity/QuRepo.class deleted file mode 100644 index b560c6d304380846b4d7a8f3b7c16b801aa962cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcma)9ZF3vd6@J#*)vn|URaLCX(=l2?uVE!9-juvsh3hc#6WaHrno#= zdE9_8Yhd797_=fUh?c#2tSmy3e};iRzhIsI;cttjwZIWY&VT+(uo3Siq;EsJnRDwvYsV3LAIa32S zTVXTecGgrR5$+rr-8W&ExqDLPD#6wv+!f~PVPiGCR=S`9)$}4I;LLMOUk(QDb&*HE zfg^K%pcdlBs%j>?kR*jwCe~wmNo%S!qjjJ8xIdwzTVcsoi2O1cl%+;o6lAF!by9a) zJMLnrt-YMmGIU^{ZDJ%w$;C0;rQ&S$vn>Cyp6|+Z|_j($u6caEuI%#JSd(9DlYE9agl!P;(jg7yBNiB zp1bhi$x0EBm@rybO#}Usyy153xrugnm`jYh-tyX{2XU8y|>7(lSPCUMtz0MjSBYPxLB9sAiv9bWbnFd@3-9bQW!U@YR0dV z{C-WrNuh~wmi)EAi{d6NE4S`@U-w;@?yWzZW``)|Mpt1f{~_7;e}tV^JWdJFVjUUV`YWS1GdPuLwB|1(bffl?>i zl1<@Xvn`UYmPe_zSYj*@1K;Z&{()Y@>taj87n1Pb?;d`v*YLVz)9^z{_#fbh-N-rF zYj|DwY4~GF_;UB~5A_;ejt{S(n)|zx@ci<1qBlNe+6L(M<@nggu*@6d|A6rktjvw^ zPhreYjP2l5GNf>3VS*?B^(4$3W34 zX7@Q=EZcOtSayoGI60}4U3B(2&6aa?nl0yxIdRITPPt-!pVM5qpH6dSx7aUEZt6s- z?PT8I)-oNP;WfSG-CF$;3wVNj4dF9fVz=m{<&U^bT?S+L9Tq8>xPbSuM9IQD-oX`0 zS=4b2Pg1h^g;7|hnX3ox`B-4o*#*r;uL(xnvjuekJT`XIP ziFK1qa*9^lG+WLlrtGeX)ud<5mF>jDLP}@ZiRt*^X-SJ7M_F0Jz97JtCZve z_bRH~cZMI3b<`-CIL&k`N){9NFrKHBMZ^!+8YMeP;=hppiVBlSGz=z=udf(lZ`>z} zAy{pPwvTyGmAYm3x$Sx0tWBNmgU);YhZxc+PREqJS%=#=ku>qv)0us=xKsJ&R{jeA zslv5S&|s!7?qH)3@j-c39+s? diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/enums/QuType.class b/exam-api/target/classes/com/yf/exam/modules/qu/enums/QuType.class deleted file mode 100644 index b6c37f20f35d8a46c37cd56514a1f6d8978f5ff8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 429 zcmZut%T5A85Uk;~u&g{4LA`l_i*xa&Au*z6%_>oW`>+gT$v$*ph$&kH2>)CyVy7Q~q;Zn|Id_wBY&>7f-*Tde`1w;PS^}Wzrb{W#` z&WIs%9!;c)EtCzE7^;6vEL2csFjm4>vOi^LwC&D6Sq0Dx7P81`wqwEAuw4sz5_#2$H_25i+HEgk``U@-z4W z{16TtIP#+qv);Uf5If8SxI~FAI55q|IX()cP_^ zgmoGje7aVl{RJ))b_ah`e800oT1>388A;nZXfb%&bL7YPUK%-w@SV^iMvMAQk|;}3 zs>CpO)=@g-A{E06p26N5Dx73z6w)WfQUjP6A diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/mapper/QuRepoMapper.class b/exam-api/target/classes/com/yf/exam/modules/qu/mapper/QuRepoMapper.class deleted file mode 100644 index e8f032ff4e37cbe51dc5a4a0f57dffc8bd11f949..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmb7=F>b;@5Jmq2!9W_g1_jfkGonaAMHB%i7@NUb;`KWAZWLcFMGlZdMJ!H`5Tc=& z8I4B&KmGan{rU#*gvSUSg=uOHHG7gzHe~G1=Tg(VC&Oha6|Mb7O8e3-5qb*a1Aj2( zTx9f`93*uS`U-S%N!S{_vq9S=>~vk`z7B^<&SuYC%b%6PXls3y%2MZ|FuBCcP6UPF wR%Zn}UxoYI>Y5s_?j+7z!Hu9&IPIGMpz$IOX%xDl9>SM^4x+XXFl^`O2yNhFTL1t6 diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/service/QuAnswerService.class b/exam-api/target/classes/com/yf/exam/modules/qu/service/QuAnswerService.class deleted file mode 100644 index e89a6fb8197c463d467387d2948648f3b79785cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1129 zcmbtT%Wl&^6g@YjbyFTKr99UlwVTcYc0ow35K^Q-+6KXTVh>>|+mnoE()yeD0~UM$ zABDJ{JV;3`TCo_9#^*lHJ@?+9zrOzf@Cwf&GzbT=$wc`@s0*2i%p^Wlg&2ELC_B-y z5-0vJFV2GElu#@V- zO?z`xp2|Ei8R7X}_fK#7&a$%1FZ}XOr=rU~tjLFJnAH+hxzny(h`W6XNpyk2~i;@>M%_SFRoz!ca8g>2)%#X)fTzRpo-Y6>LYCSjkmFSr&FG&-T5@k zM*5&qn=oE##B@p8^>bUlAhiTnyTB_*xW#9U*SpDU8eszswD{G)ChqXPM!3xw;V$ki lpshKy9iaP5(9UJ(0d^N&4+GR{fW7c2lax(yWCa=-JyLnEQ?13Z9SA+w&|>h?QxVU;a{MMD9x303nDUY3 zDeAHGke}IeOw^$KbD+&&=SqwP4@DgCli?M5#(@n6uX3KDP?7YNBR;E)YXWzrr?pNKW}Rk*1Dnu-E&6Lg2d?M4 z_doo8=7K^6V5fINc7q-2(p O@J|TPf~S?BXMX^k+JR00 diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/service/QuService.class b/exam-api/target/classes/com/yf/exam/modules/qu/service/QuService.class deleted file mode 100644 index 39cb7475be0ec91d744820ec46fddc340c066b34..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1651 zcmb_c+invv5FLkH+R~Pma=+i3yx<3TOI0D1R*DqVrl~;U&Dk}tJW7O& za=i8gjzBeL0}%}fe5iM3lklYCl*NMjTGB)3bHsNoN67*wvWON z&2bu|uuFXG1;*#7PB{@@@dP#3Oauhp6x<-|&4Pzy+XkNj617~otuBF*K(2DaMu?+SXtRO0bMyC0Kz~{I8%$U6mQq8sWP#7x*J)jehW&7U=mrh)86{}pyp-+)v2SZ~h+e?&l17LZ4VvhgOYFKA~smM#H%h)|JXqdmszOb Y3a*y)8aA2Ma2+>shq*R8`jGtn0`-Ly(EtDd diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuAnswerServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuAnswerServiceImpl.class deleted file mode 100644 index 90c036309ca5d750a8cad2e4d4f93c748887d3ab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8257 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 BXSx6Y diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuRepoServiceImpl$1.class b/exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuRepoServiceImpl$1.class deleted file mode 100644 index f0ef4a2adf4993cb87512da2e0773bce226e1c39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 934 zcmbVLOK;Oa5dJn#5)2Im%9|pTLkkj1B~S&edMO}93Q&@$oY(dw-OAo|y>>-zocT8# z5E2J|06z*b>-2(n9AayC9y_!1&0~N3{PrEd6RfvU6WESyD(6#4A5NHE_yK+RC9WPV^*7Ud9Xb9Z*&MMKN3YDBHR~$QQf^xpDJGNyW(JSrauKiK* zN5|?^33SGKW>it;Z1kxD@c;7fRyLussg7+a(|M>0?XskF-0^~p)7&r?XWBTKDJFc* zsslBnh3{WxBQEUONW7T5-Pz-xYxmMbiFMk{7OAyyQ{d@R4G(Y|cev>loSDG;-RN?C3-C_Y25O4$}Yt diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuRepoServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/qu/service/impl/QuRepoServiceImpl.class deleted file mode 100644 index 6517adbdff4b0b2b8dabc1b67c68faccda423860..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9823 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 Y)pLPEcMQfe5*aYcjv_~~V;GhGFAa4Zb^rhX diff --git a/exam-api/target/classes/com/yf/exam/modules/qu/utils/ImageCheckUtils.class b/exam-api/target/classes/com/yf/exam/modules/qu/utils/ImageCheckUtils.class deleted file mode 100644 index 79b3fd4569aaa7f6fd7d77bdfdc8d646bd9e5278..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1177 zcmb7DZBG+H5Pr544r&opUPKUzqO=8B6iiGoCfI0VQq)+%$hYlvX_xkH%iSK(pQ8VQ z#DLL6zx$(%v)776G{!G8H+!?s%slh#x9^|609eI+2MLBnS9`p*!{wpyxTh;oLxy}W z;*n8}kU#T8RTgT}t#8`cL6Tv3SL_Sk5Pp@vDDO(wFeF{=?=UPEyTL?RHI!-bsM*k> z!flGG^36CZ#K9WF#H+|R%9C3vRONC9aJB8keUTuWI@9>aXL_=~ZUvD2)bKgn&SFp6;p zV+?b4ZqXEkLbQ1vu@UpV!rRy5U8Hdp6AX?DAJZ=C43ph;3N;awQ@nx^`{Wu=k9EHPV^W;19ojAV1?r%2%@ZaJ7cqmp*hY23yT@OW&+vmX^~)Pm&>FH$>i{$ohWr3G$>_vKJ`g0WGCPA6RjegLVDoo;TIC+Pgp+p_GIYR%nO#4s_At1d3nw`&pG$> z|9|@WTL63TdI|}F-C3t-Rc0)8S{ALMlM4#Uvs_hntgKV=U8hh`t~J5?1GU=}k^;M; zdRfO+mMq&*onh&zD>?$589ta)?!28ayY57o3ef6C0n2a8r8XM@1iPefXRJJFS z=hNOjCZVz{v$M+bW^LE8WZ=)9iDq#^%>_)NH{p;m)LAnx3jskSJSnh!#C9xiLFV&h z&z01B7JZDBm1`46xew+J(0$B=n?2`wdT{Bm3?X4g`EN^FUV$N*Oo|{UVeM=@>}mOojrH?lYcNI zE2j!9P6zJ8z7+NnZZw_sJ*9C!9$+Kql~3>NPiEwloR?PM+XZXHW=H4}4WzLj4{?sU zs_4wC;ffL7+!K*Kpr>V452bli;M>@Zc)%~qi ze~|5yUjFO(<+s26@w0y}zxGC08eiIl4jjT`DIDf}Xi}Om%ruVRkL+tx8G-9o3R94! zyfx|Tac@d9lEx^G(hmi7T?G27W#JU!Xt!m-KBI>%C!eXTF))@n#bOPlFfOnyiYG>F z#Z$+xn9-TSL?g*a3v}QZx;k(iCsN>{a7X>)X_$x9aq`Sd;|V+|us-XQE90)i8R^@K zY}`?eBntW0LG+sLeoA-upLnLPqSLg?cf`uOO1o64$4&`z(r_L`(ndbCF*npJ%REcg znC9a~rd67M-+me{7|tvu|Gh+keA`(ybIGQBS0N8WOVtCt6HGHKJBA z(|H3*cVdVyit+JqMRRc=ysbpK@AqG1h})OZ9ks=iJg8 z=k+PxnNMRaIy!M0XHuxt*+=T_!f7~o zPT+yx8YbuD-dN3B&X7RIq!YMVb;#EHb$9%0WtX1#0yj6p6mDZ?+xW$m;2+mL-lce_uh*ETO!+UK>395i;O{z0SiA~e*YsV$ z`Y(*iwfxmW;1t-vUoA=jY(zJ&JSp)9B#oPXy57Vm*FOc};RbBh|9iL*HxW(v@Mhe? zmkL{OE4ETSrQO}ef3)+%1~$;u_aEGT*CMthKp4HB^Hl;GMhCCJUS9VZD4WcER}~5s z(T`m;Xi;j7;El$2H|}YSZ+8UWy^ZiaUd7jK@O_Cri+C`B6RTl7i1m0hg0Z`Xv74|4 ze~Iy7Ji?3)5pM#+jdFP)g7sh{tfy%yNqgI>SRY-);|cr^W1|;w?8yt5Ji4?0D@^tE zU%<&L3EpUQjuH3-t2fCqO_?D2LR+;UwlRpO8N>#1;2HdxzBZFYe_`_5;>nlD)B?*k z3M>~1Of?G3p)<|!4ONoNBrw{yvl>NPgeDmx${F-qLxmdp4McAfeJ6Q+3eVDDfd)e| z>37B2yAt2U$mF10CDZO-k)0g(FbCIz7YW916ik%y0U5urI^$h3-ZP=B#`x#sY)aq- d!=o2Xy0;MKOB8t7^yDjemG5rieb|n#{R~je?$`hT diff --git a/exam-api/target/classes/com/yf/exam/modules/repo/dto/RepoDTO.class b/exam-api/target/classes/com/yf/exam/modules/repo/dto/RepoDTO.class deleted file mode 100644 index b857f29e93711cbdb197196791e48585d9fbf7ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4477 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/config/dto/SysConfigDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/config/dto/SysConfigDTO.class deleted file mode 100644 index 9447e0b3994f438d7c794ba9e1274e0b182eeca3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3900 zcmb7GYjYE26n?hJW;f{;O63*-1+CgE5$~pemQrdYZLx(ac-M3Z-0IF zBY?Z`rh*0uiHtRwn4U-&&+C(kNh@0_7*4{OcBn5-n7KsOwGyM#PM`O*efO|}u!QFQ z`awNW(2Kdm@c4cs<0^};tku>3+4;@c)=jp@gBzv+cB-;p44^;(!&y(Na?tG z(H+wZB}1l5;!l#$U}hz>q$^vDy0%%&^+<@1l!~r7X^feUN$TEW(QhC4G&gph z({nk)PUsa&qIb$1w6aEFmu*cMwmVH8`JmX6I|*M@+jzEQ+D10yZ?8J0YYgd=v}<#x z&(59w*k=%%flB_Vd{=&`vkPNs(khDkB5XAYG0$KSp5-YH)n%~(^@ zBW5n|3a+C^E`R*`#h*UCeE1|?$Qf>maV~FbUntTwL8PhT!3AP%Nf)fiaqB>0z$hBF z?iyJJ74Bn{QAoH+gN7yvOVei27%EMU8}@F$5-n*fqZh_>R)^^elwmh-GJl)W|FaRe zWg~+a4YDP6Zr89}?5t70qns;Y=+dxK7{r2YL9T>8p<#7-L0>sn!f=O%>xDsf{4}j- ztIbmT7<+5baPwAnmu|CQE<22Sa7o!Iy27Vkt%L|0K`)Tvs@?ns?`hu` zqhDJzYy~4%GkURKpoQ{54QsJ3h7h)CNTNsRwrjXe=p^jW(BVrDY3TN)hc(=ebvy^` zr0Px&_F~+Yn>TC;iYQL2I1s9*@x&%iS!vTHzNt##0jj!nsgJ1A_#BnK4LGV49!FIJ z2OL$Jrcsx*9Mq?RPEzx_lNVhmA=K8M5(#-i!(QxTJiA6xgZ&IR#WdT7Q!4OCguG~? ztrf>(tyL~YTPxngTC4U|UCSQ{3UU%wT{|eYmCQocuvM7skLuCYW@fj1o zY&MIgyH%))8Z1mvrB6*6MW(xZp@ysJ!C!Z95aW+?h0ja)+|2t@ zYMLD^L(4u~N110our_*DG5WEB2A=&|!zvnh_-hSu8hH3?4QsfgB#s&ZH_(R&pKj!R zJ%0(x67O=yH`s8BLIZB*RX{)wTY1%d0B*spe3HcZtV7hcI3gbJIz*j|BjR+ZL$q;m zL>w-4h&C;b=uUnogldwVBzc3#Zb#?0*zh%_+H9}%5ka;^CH&^On`oIm=ylLN_37Id zOYe7IK)>9hzqdYp=VIyo9uDYNdi3|zr{B0(djBK@^s7Dk`|HzhS}eVPo&x&oJ$k;V zYD+7fW7(Qmq6?iJpFs|v==>SdN037&I?q8G?CO}sX77>014CWBB*WdmqA?ymk7YB^ zy5r$l^p+8QNtuwoWF#&NOyoRTX3!Lu`4(S6Jp`^g(03W5K;(hGEZc0&nhzGHUQVg>k zv}2SS@jceyQA!#fqi?-vQPe-MM1k}tRw@YbU!}O(7o+t>1V!G-B8SDtN^OyGKVuW; zR~FS3DfzeKE6=Ay1SwJyun&4I#8*3)UNefNi`1zkeW$r+b9jr_C~KR0@@x~expM|e z_beWNM(F#JVPS}e1B)t}$2avSWzWRE@fN9ZxojFpMm$qw-o$S5SEZ7QXJR7-s}#?) zcHy#*_-+O>vojf#R|w}Kp7LhS{1+|Rj>;3T5SMUt_D}|3mAeWYR!_$ zs)cP_$TaZ-rMCKTM7*qi>MSPqw&c%XzvzHjOtw7Bi>SJg9bfJja>OsKuPi((ul_1%z#;EA9G?Hkd5yIEjCmbz@bVAEFQniA diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/config/entity/SysConfig.class b/exam-api/target/classes/com/yf/exam/modules/sys/config/entity/SysConfig.class deleted file mode 100644 index cfe42128c718631f4f9e88e7244512183edce89e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4143 zcmb7HYjYdr6@J#*)vn}qVgx1#QV8IJuWYy!S~*GMT%5?YO=<08DFa{N6Epk(@+HjBX=`R$h5#x&tFgOfhi-Gb-f9vibiAhPdzM`e-5n=z%6?F>R{e@oS1{gm0@to@ zIDx1P19b+=jzsW0?q5D&Df6BZf8+oq=Xi{o8M9E;x0K9S6=)cwYmf5kfIcuru4 zj<~6wW->ESaIc9hMim@faXn|P)!1@^Xg!iLzsxk-Og4j@Fx9Z;GCL1Pf%zU4$0chahN8i`lB?x z!OC5A!kS;XUt=g$>#|c07p9-d z(ywDCj-$YeD%;*!(H7=UP27dUSuEnTj#G51yD?&86F)&gG|!rNKr|JcGcg@gMH6!| z^)nL|4s-9ZxO#V2;sK-Khczcqpi9aoWfK|^CnCopX1CH0#G)QXq|j5q2V;#MPK+V- z8<%o|(Zh%^dWt&1=;4f&LfWs|+ev*HHM?1p+EkF5nl4J1eq-Vp{EF+juwGm}%LNx1 z{J?3p>f9!&Xf>J1uH)Is9v3r{U2n3JJ@Xo&AGaYLH3f&dIf%KZT5i4K1O_g%v31(! zlv_ETMHO`u4LnLOj=7#2o)DIAVjItqWp8gg9%DVfUk&z^Wiro#0jb5gBkg4zH_&3m z%^m5ig`D3-D(wZ4u^Xv$Rz=Pq7@leI=S35jq&gVHjVx05qqzJM+e*oA1!ZT+tuw+0 zIxBlf0>I`~a;u&lwgL(--@NyI*ZFYldv}Ht>e7xaaZjlrZ zn>6l(#y4x8qY)T<*xWcaInMDrM$UmInFk$=;}(wCf)crWZ{zcq;rL@=?Lv{NBUIqD0|WoB11#d_-ad_wg+Y5O?qA+l&=3i63&L zNJAI^^x$wn>?Z?&W`+Y|I~o8qKO7Ld*#MxU!vQ^lM_CRx2D?D;5sB{1?B8+ZFQodT zE$Nl`$I%ulE}zH9)mU?^8Qz-)!#_AId|Z7Ad@h22d@%gXu<&sWC-4&y{1b!W=ZA%l zcR~VxD1!g-VECiM!pHk5fzL24!__ zW)BO|ki?0#Ilc<&{8t#wt6$=lt1##D>K;zEHO>??s+=jL^P1?SzeMgT#`0P|-J`Tr z(5bXkF!H)68HtjfH+q!L7cx{jU&!V&qLfXPGWl$e(sE&xO3MW^KPpOQqC~2#q+a9F zQhlA_^?1phTKyU;SY>%m;0vs=TZ~ZhS3F5x3N!c+7f7i%hj;LEQW~GPu+DcHbzDJ- zl#T!nE|N0vE|%~VsSMu3NozAYlB8{go74&}eNUB@E- z4U%`nWM(kQA2QJfTVaw_xij@AnU^B|ln^z^u7u=f+gIy^L}MT%BnkRjR6@K<(Da7x zp!|nCgP?DZFC0^kM}=~De4)lNF~(=FLZ9Emub&nEnSv^UyqZW1DV|ugRL~+3>n1WX z@>*MTzL1VY>5hoi6k9D9^hm@)O04uqba?-?ug7jCYfRxy{1%&BqlP!|EGaqhUV+VZ zr+9$WutiG63BJpGG$!m3R7j-}@+5Oe=}{8@jqJB%s7#`wFme2RONj1xL>Lp$+6rwQ z^?FvKmhMsOYTn3Al=bVCyZZYG5)-4(q-(XmjD`#oFGc;?N0Td+Gq?CpRG-edALEKt zz#hC@z?WoQ=rE?2gx-ni^Flu#)5}8tp07Q;@LdO0G0B}GH?n=4>D~%H#>@Nn%Ij|h aDJERD!>f2L`o11rcjPYeCqBH+yzzf#9{wf( diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/config/mapper/SysConfigMapper.class b/exam-api/target/classes/com/yf/exam/modules/sys/config/mapper/SysConfigMapper.class deleted file mode 100644 index 2e909e9b032f462af13f2b2b06b40abfc9695351..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 345 zcmb7=u}%Xq42J)-z|nSL;5qP8rmGl0Vrs>3PvE<{r&O2A>5^3B)fjkyK2${-gpfKQ zG1!(Z`~UR&c>4GRu*9OkMB%ZqhT@Looedeg4V^f0(NSajoo>nSFvv(%bT4_Z$$fz< zg}Xf;m^$uTdaL)+_yRWy>CjNk*66JbWMa);yP*qb#Zi9rp4rK_l)}8SVQl18ccO5A zL3%ht6lRrfd-h>WD~I(ZxLp4ey2=NC*p}XFAAfC^Pi69^Fimlt-Um!j%}N6?5XUFAy0%*I(s$5{b7;ZCiWfx?3O#IJAe)_Crfd?~B*pk>9(({Fs+g`~ zp_k%eJ{V^H^JC^~`|$|?bC_f>5OAlg##kf0NsZc8p(TedI#kxw+@Paw!-}wo?y;{F zKZOj20V{86oUw-8T3~M%3 z8os_+96_qQ-Qzs1mbrj&VMC|rnOhPtJ!HMzVG0-(+!*OYmwMh8hv<2~_Mh1I$5_dD h_HmD!Kji5`0#1^hrZ>si zre3HBhIr04^vag*NPpi{2Gv{XGA!r11ac-H8eu3&tH>~)&UA`aRQ55c&o(!-Fs_`( zreQn6znP*`M5)W)d%~&lm;So#=+&xlqKKnEf+2=TGPk<6x|y8wRo7!kV3?p)bXPG< zq;os^uFfmERpxo+NUN-6T2vc_9bqUf3WggojAD#zJeOolPRkZL`%j@VPO;__voTWfU^V@M-I zWEpm~#xU7RR+E{NT=~Tp-fLU}!{hEbI(dgwLZL?D40D}IsGT8l4iEudc(&6-o(y~wjg4y2{vo|iE=OaxJ#FG8@yes7FvXU1CC#s=mSrm%w=@nI(mC6qnO*f8y5#7l z*t4B?+*QI6wxZkQ&B3ivM^K&6(@Xz?9+EUGY3-vOC&@_mW)BekT>l)SHB?s);sU+L z8V0zC0opNK!ev^0=Z_RLNHTqh`0E2)%}vDz_i=4II~CZ+$ajpd9U?^^Zmmzxe8KIR zPh=aQc)&27;I9#kP}ETxS7QWn91}>^&&)RBHqVTZHj61bH9^+Xn4u(6l*BB-58y6E d@-a57=IAYed!*~ZJpK55`2Y_|`Z+BCzX7yYB1-@O diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/depart/controller/SysDepartController.class b/exam-api/target/classes/com/yf/exam/modules/sys/depart/controller/SysDepartController.class deleted file mode 100644 index 52545394e7e24812788de90bbb99630289098008..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6068 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/depart/dto/request/DepartSortReqDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/depart/dto/request/DepartSortReqDTO.class deleted file mode 100644 index c3a7b25d5ab1eff55c2833b49e03ec9e9a682b04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2540 zcmbtVTXPge6#ja5W_J@d5SApc0hLRlxiWx=vP)1PT!L8=vk(PuOm^Gsz-A`Q%%b?H zRZ6L7l`oe50O5furAh+@mZdLP4> z`u6~~VZg<=DrD z1_i`nfu?vST&dx2EK{QJIw{&&S`S?EP zwGrnb`|J{|Gs9J9YQi~f9F(?nO<$H7PTNPm4G>tHMjA~5D~2sw9;r=DNcU){X=d0d znbmQVI#YDDkMc5nk_oAL3$)Hlsji1&wkeGaRxx=mOun^iaqivYtbIZH z6{kFEy5^Mh*#U&-Cn0>>+>h$$>Z=5M&#ZFqJlL?)^4%vINuV!{e)O<}CDY!ob}Ofm z#(HdML>ybw=tht7J()%;+Sqc={HBV~n1bV1q$|*%)awY_pfT`8lVq@}{7@Z8U%d#zhw{jgxV+5mgnbXtKChPvW zibpNFxNDH4wb_`QnBiunhroshopAPU>)m%R-TmxRcwT?|>gt^<@9=;NEGtW|yqR&s$2zj&dAUotG(xM4NFNpQA? z?<^mKw%}Xu`3CJ@(}-amN3{h+e1u~<+<-^%7-vGY?*o7~J{(X7I+@)#Z^u?LQZahOv z!$B5yCoLTXtVNDi0(s)EM?*68CzdB6{z6+4asH=ht_jTsfk>F`6h>2b-V(y>WO!9H zT`8hi|65h{`>b_xRjecQ9f9n;uK4M~rul_F_4Ax-&hOF&0&&+h=PQ&p)!cg#$^IGa zKB@fMa++GmYSBtc3C^W;OAEO@M2#rLDcN(_LrOY{?WLuT;}-1WERIcNHAqVfL^}-a z9vvD*6M{nVb&uohJf diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/depart/dto/response/SysDepartTreeDTO.class deleted file mode 100644 index c2ab4bfd0fbcd2f5deb5030a2a44afd31b88231d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2466 zcmb_d-*XdH7(F-LkkFI}?inV~a|zUYkqM?wAv70=zIX`2RR20QKUz2Dw@?m6fCzT4mb zzV{P=lXyRbfWSb`F6oOO>hcq#q?hb`r6^t9U3B%lEE|re=RI3@q+7NvSL)eCcf=3R zI8u(xOopHd=ud!9-^fh@QCB*qQJj^IYueVuu@M1rL7+X&Lp;OsW{qM+21!!=2!U{} zU>5U^w74~M*|=)x70)c{8PoMr0z0$jf@OFWM+!_ed>+U=0lCM@OAQgebGl-AW=YPP zt~py8E%Qupk}X*!ZFkm(6iIFN;%-U6ziwNSxqRrHXXdzQ4Bi z`HermU7|2YepE3XnQy5IZCj9Dx~?_WooJ9lnCWf7|3Txyn#M8fY7>>QOwlgQ+gJ4S z(vpth$vk;zY3kbvfrAmWqD^3T#h{SvHt!&TB!{~BWpK~>u3Sn4a{|4J?_-uvEEuApZ0$ufsqISb{ zuTvjv#Tkr7a1Q5r`haPf-cWYW0uuTg(EB}b;ShGg&=lt7V>9d zM%cW3M*Mj@cJUqM_uY&|UF<<@4tu$p8AY5J)pZ@%&vgpt0NWG=2a`Xb>ox}g z9O6?g0b+QD&q#Fvp2cC#1fC-;tp@n~Hoy!K0tzA7^CP`L2{y( zkJDP;Z)oe(e#M?!i1c-8E9muCXv>v8AYpR z*$Lk=_CL2aT6T>wji864sR3=!H|9_@RiG{5XwNN#`d0A92ZM*2+mWnpt(~iqdm1U8 z8)S_RaHJ|TjzQlJWx`Pe9+81Y6NI1vd_AJ#jd?(*5@f?QVVdSjRf(OeICCj>_AW*g z+ZDVO%dB8x1@HV@$#&K_3e~+$z&C3DE@o7vZZ~;r?FTUHuX?xMZtrmq+wBtO`1l8{ C5hlz4 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/depart/entity/SysDepart.class b/exam-api/target/classes/com/yf/exam/modules/sys/depart/entity/SysDepart.class deleted file mode 100644 index 70f0ceaaff04ddc7e4c66667118bfd8e11563754..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4705 zcmb7HTXP&&5&lLyvopII$+8m3-q-}k5uj_&06#a;qaj-e%GvE_vhH(EIa>~jwUS%SR=2C!qPyu-!mR6uUbvlI z+^$}X6ee^H4~o;O6O_GTP|KFLSDnzSZkB3Q(uA&G^#VWZ6hd#yt+<7tQq0ZUnG~YCDUrq!|hGJCcARa z7ng{pck0~YV*bk9iY&%r(n8T|xUD7XydS!2ZiV1eU2#XDUH06PM3)lI6&0GrE#Zdb znU$0hS0qExv~y0G(<-zd$&va3GhbI1B3Z8nm5{4mb0ebLN5@)1Z6x?uoZ!5_wNHu% zXG%eNHQ2~raecSqgsw!Y%UmgFxZ6e=y&4Y9c)mMVE3dkhXi2h{L4o`4unL&{SgD8W z9=Gk@C^xrIikz~Si(p;GIUm}!lzP@Bq6r&=xJ}{b;~a|q9vj0FX`M%sDEfPC9BtLt zSN4F7J4A1C-bJQSu%EVZT)2&@O6bsNdp^gOS^TqZxE>TaJtqly1UM~Sn&A((I@Y5X zPl45=ZaS$AuT!XfHi?wDG$h?;Yfg!C>0(xPuw_@R|%tfPrk9x&3 zX@uCe@ijcmSWbJs7oHW>H*9hln5_n72{f370Vo<9T+{<2x?Xka+o_i#VO#h;{<~w1nLgTfAd-g|t?M~lvJ3GsU zmOXf~z27d$13l9GSg$bW{8-~I9>D}ZohG}Kfh0#JM?J9kV@KxL=6I0rK5F`_R336M zfWsWIKgM>!-OeBFLo~2Kwi}Mnzz*4N$k4zR*={&S1N$WBKTIS01;-!fNTNK!_g(yD zDQkQi@cy~nXTOEj|x+7xS>p*m>J0fgAx6i&e2bGORo+^Og|japY2S4s#|(>v|{?B5&dU7)8F4My*i*V z{T&hgBb{^qP`C7Q%r(UH$0K^)8QQnDM`u+WVg=ls7=IUreq-XV(0&0Uabw~y&}Jvc zcW@yZQn)-f$wy9~`Wt#P`Ug0C9rjd4-@&7G#7xd0WG0u)7=lTDfWhnN%NUtt3urE9 z5;T{yGNyp67-VLw7SMbyMbLaMok!7{@>GBqbeJ z@E*QI$-pdrgQqAZQNkPeG9?ogyo|3k5ZQ+>AM5dr}Z;Yu^k_nUT3LU0~6O_ zPVHd*Y0=N*bTMS~*kVZmD$`ufh)k@#$jQnWb<=z<8JUs|6Dv}AE#%C|#A1xS%(`hQ zXGJEfVPc8W>-hc!^ORaay!-@yjceH8@(uioC9uI2rtwRZnUVzV#tZN%={SpZ1e6Sx z(kwP9C3$DM56@CE@j8yMXry4c>Do!yA5x)n(>0A7&DVz{YmR$FF$ALysAKfqsu-4R zfi;nPwK3S-4Q}H1F~lxbn@iJce_QOB+Rw4+d!U)_%r`Ha?G=XSnJBr#T>T@$CkD6P z$8)TvxgC6c@OeI@;&$+z!S5+~Ui2?1c|qhKD0xZbmz6vt_*W?J;I)tXc3+JPLX%tX pK7loFT<_z}{rmgw8&?89j*j0?@YCr1v*=1G_r16IjPjfv z_DX+PADq;<36l!iH#8(n$s~B%zu`e>!juB62>WC+9oqu4vQI(#JT1H=9KZ7&kmnJV zf~lMmZ4w3d8{IF9`7W^W+8Putx$d#95^^~@ql7zk?Khpo!H(NFyg2P_e*Lx4Q#nvf zf$+HISJ3L|#84<4D|r6TZ{7Wk7LI*xjpwl_7mm3SX0M}Q?YuBSXMCx>?x%c4jxrAH z_KmTjR^2OD?^>5209~quKw#bUzBj(tIe#(ugMFZ3Pn&4f%bP_`eC$f?I+j in1NZ@7osW!a}x6&7N9M#6~SVal89ibUYFmBR$c*dh$>b9 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/depart/service/SysDepartService.class b/exam-api/target/classes/com/yf/exam/modules/sys/depart/service/SysDepartService.class deleted file mode 100644 index a475abcbec0d616cf5b88cb32ec846766f841bc2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1339 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/system/mapper/SysDictMapper.class b/exam-api/target/classes/com/yf/exam/modules/sys/system/mapper/SysDictMapper.class deleted file mode 100644 index 880f259888a3dac58f85b8cf982098e16d0e7003..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 539 zcmbVJJx{|h5PdG`cY(GWD-s9>@BmwPI7Hs61$3>s`+aS`~ZFw;u<8P ziUEn?+4u3@`R@Gj`SuRr7Q-fL0ymLOWigkuRjEvEoG0X@D@u6ckXo-Ple5Cz>Bvt@ zuZcjQzfv0|6J-|iAzV@91zK}$;vG%kEg;Z-5ElKK-!%nJ-AWPLqpuSN_PJDaCwFClBTOQ%yl?onn zN`7hMpBK1pXJ+#(qIU+hbh5)y~9|Z{Bb{!4W&}8o_ p;6#hjcIZ@Qw=#Q`*~TGD1_3jHE~Ce2Gio?0&tvrYZm?nid;#nClfnQ1 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/system/service/SysDictService.class b/exam-api/target/classes/com/yf/exam/modules/sys/system/service/SysDictService.class deleted file mode 100644 index 2735b253061e3d817c9d0d69f13c180f01f7d6bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmbVIyH3ME5S$H8oEIpFpCC=HAywKa6$m7^X)fnYa=~XycV{d9H3~j}k3y`WK!`5I z>}qD;`||qys=%;-QQ~#-J%16w2{vMB**nJ5Izxhn;;c86pRF80bwe( GhwCp%pIsyX diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/system/service/impl/SysDictServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/sys/system/service/impl/SysDictServiceImpl.class deleted file mode 100644 index 3df17bb3e77fba26c0814980a82a9e95b971a45e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1048 zcmbVLTWb?R6#izjN!m0uX{*+Ftv5*PWge^`M2bZbgj9=>Joz%&Owwt0cf#y!+Wl7w zg6M-kz#k=^*`zI{LZlDpGH1W@ojK>s{{Hjx7l2JXEW=~i3UtJ?0hdQ2;*svBp-gy^ zbFWTA+c``C89uAC% zcCU47Ik3 z<@+@1N%KiiU54eh4n)`$M!EAe=-WL-7kM?Sxf%1P3(XBw+;; z*3YNSgJHFbGUgW0z>PAlGd#P%YO1)5D-1<@Je_k_rm0$aMEw*FWJbub2veG4eMj0o z-QN{%VOAO%U!|i{6Uev9&3X0gOLEWispDp7{&U?4aY${mk>t}C-NIdJvOrQK@m#ND z=jnGTk*$#R$kLigFVcyVWn_yR-*M?{{<%)tfkB|9T;~8RV}(x4^-d%%Sx}K8+1kc8 zTz&NTNyGnvYejsakcU&6m7HdC0-e%O5^myFUZ#fI2z#sd-(FDMU4eL^5nrGV5Qz&k&o3H%AfH@l8&H;peKUUp_@&iUqCzB6Zj|NGa+ zM0ABWZg|u`wjjUueo~qVAbUaMZatCLZ)sl=(u6UMf6y%zrjEpI# zEX#IpNF3w%V4W$io9hw+3r)DnZVmxqk|d{)qD+Z3jUn1qyIbS`DsTy2Sb9;AQD6U7n7 zrJ{6vnn5Z4Wc&VKI}i81`+o1s$49YlOJ;b+uyR#ET%V47EQn$e`2|vxAEde+{%_bh zMpvH8;d*GkBETZcOX*cc1GNRREOa5b(y6JG@m5cnwsWOq2QhjhPHoiQN$2Q%l-^== z>0gv_oO)=G(cLDASY}qU+)3)XO~h%KMi61;WwTPDCNB=A?ukvoO=0EvQs$n_x(z6c zn6^89fiXH?Qw&E}BGQ1Af>C3>Len-g>aD#`O2vaaWv#iRTP+zzpR{CR>-gOZJ~b;0 zL=qyVpOD9IxsY@5gWSqw7CZpMa=S{(tF~CfptQGf?QJP{jT({V2 zZ{!%w(0fsuWz=7-vel`REhl_!M=6?Ziz!ixHhFdylZs=@`Za!nn|Bg_bOW%fA z+V-5RoHO+6qxaCGY)lh|(V03;430!xkw+cI_kY;g|LXq!*AMo#cUx;=%6<9}1Yl3_ ze$;P2{dUBYQBptpL>Mnk^i|y~Fh=pG$72}781bgUw-bLHBg5F1*roVSn1tvBe6=vq z03F9S9tco3oxmTCq!$7E66PU#*@qqlXfJkN`IwlZSLvjlD>_A|ArdT}q1Uh}=`6iY zeNc_+WBW1DM%WP32A@d$OasHe(3>GzNQ~^#(2rOQ`v%1zLa66XddD}aFHk5O1yvfQ zF+g_0bWU$W`U2#8eJ#Crv9fmwYnQRt#;~mY83$yz?9Y{Y{#>o{=USCN+J$d{8o}82 z8(sfsmnKqWS8l+Sk)C%S(ez?sw8o7!a^`Yj0b7+0&8$ZLMvsZLPKK`_Ig7W|Pfk^Y}E+vpYNUAK&|3 z@BjV(zG2K?}7F$i(x}`?Ugkzbp7=Jdj z*q8IsqRf*J1_)FKheu3HSGA-O99FB@de<0%L5+OSpj(@bh%PXvJ~+OIc*>Lg(z5+w zH3Fkor4o)2*Vh=f(HPSgCK9HjIfj|A1u4+R}MO!f+M{6jx4LBQRi*8P&rm#$W{l5f&I)ZzS~Psd%Gq zt=1@4puFCUXt6b#WypK~;Q*)EAds5;%H^{yv6RHjCLIr`ZX!tcG7mL zmm^o{*IcxEMa{IV(HRddOd6{=f^r5n7)=SyNm)hUUe9xhd!}s(SPPxR=;?fJtv}BT@#~Dji--o4f-Dx(X0_PU2LwYiI zAmxfitoLf2Ae^+|jM93@F@EzLZ)s+EOzRoL)f*O2e3hDIrW|2->7ZY)R>lNQX3qZq%~4rm4fN%?khFhX3|CnVJ6fNss+x@ ziz7EpC@9A)0j;v9z@AUC)1-gFDH&q6g0sn~2-&GfM7Np!vx9P1G;Y)*PT$E`YPne} zFu#yw={4zz!_w^}GpA1$%A0lq!qiyD&2N=B{233V-A6GFYfseyrRNY|!} z7%`M#IUA?TzmCIqckHlbwF<6~sa58fo)yAakE=qsQlP>Go~@FCt0kn6TtJ-|9WfIh zP;db*lX0%eIByh~z&sA-WR8V}A?OCEz*HArpDrZJmG@9YQlF97V0KHWj63@Pp`5tA zt>cbep4}N+syEl%{_?P!05#GUF$D_{7g&+g4?#HnWf7`KKc|vW%^_1RD_|}5YqEmY z`SN2&pXl7#?k#R7p1ZMg*B&}q^~6cV90ev)0<-!lm|;qmWng9nL{8-ccuD{iMVfWhZZ<4a)lyFLwSh`Nl|01?&|YP-_+`Kq*;Hrf zv7`5PJifbg`!3ILGI%6nX{zfKY{m5g7rr;_EHMizin4eP1Z@!~r`~4^Pd|n1fR40?O3ceXTLfB4L4TgB{k`&y6PcWRx$CS>@ zPA~i^$B3!*25V1g$=ej%jyqT-SbE&ttk<@y94?mVPy6;ttFY>s;wzZbbn3CZCk$}_J95on;Tx5;?g``k*VJx zyA>MUioZtO(%O0b4a^_a6%qo8z}*S-ZgFmA$wYDku9B^|!@f*@ueD^=VukS_2FtHU z6zs#JoH(Y%8>1xIi~Ta99~0NRLxa=Tl=D1ezkcNeH(#h{w&V_k@8QP^)qH!Z3K^{`@0uFQb1cT?iUT1f=XPI3~S9$9{3gM{0^q_Hi ztoJ$(Xq=Yxk{!ko83Iq@OA5Y>udo>9!r;cHEPjJkd0oQMxl?E5dIVon@O6BHo$XBL zkwM7mzSGu7qIyXdFyG4TOS~;++GYiN#gAEct*Ppr9lH6S+!Wg4MSFVl){hv-ie{#V zrIQ3@t)C^o4-*qYtPj%3o27klP_{qa6PaR5=i+)xHUsrQDT|Q6T9<#{&@tz0j7G}a_z<0lGU#!m${z8A1LRg)X-oM%?dI+m4@O>%KPy8q<$ z_oYFFNs)X$(}(s;1;3Ke%G{@`q)96#MRjhf4J~F|t9yhuiHAqQ&^HpBxlLBN)Ao8r zy>485dn9WZui;n-zZ00))z-^+1s!s$I9!%(@np=~{V(UyO&G^tKj$e z1MxR&cC$P&b&pT$%J4cZ;Ff=K>>CRHjK46pS!-)C7KB+_-Zay!FT=seNl|3No9D4_RG%!y{-pgyo)zN_)nJV z9%9O;dj%H?feE?gcbTvZkIDW66j37kPtMmrb0}LTLfuX>(zeR!XfaR`VL7`ZEl&^n z>K~Po2P)cltWia0}@DKJEfIf17F+j69_H~$hX5#nGuc3w)g=;qizJg$w?pD=|9sC|th1ELwnj+IVZ?PsX0EPe z7teH<$jZkBfg*XJ&ASjG$!i&}3a@;h!|y@7Q+XA$$=en3Cc;kFboPlj~U2LT| z7w56}`Rrf9_a?jup5N7QfV4s$sPh6)CAzH`;7X~UUOvAa7ZzdJ)42E$maZ#b)`k@` zTCu7XYg(~Rf}hcj_ZNXS{9qU6a*hWU(%7|BeG#VNq5$^l4EAb75GBZg1h)Ws7xsvY zeFK^}k;FccO}>en112^CxTT2|Y2uCi&=m_@J2!BkwDWM+&h6MlU8<-+q6@5N;N|ST zA^>uD2IO!Tnv9ul243KTG?DBH@|plhs~gCyI9N=4(!WD}d^Szlip|~8tz*=#chQaX zx@XW0rJuJ@<1D9dMT?JVCbhp-8pI9B52cOx;Q+pm^atNZbK~1Ud`-RLyP-S2kKyC_ z@!c4}cT+xmOMUxQ_<6Lg9k&)?ZFV?%9!@d6HwQ3QWNcVL8{XL+<6Zb+%Z)`p*^6EB@sQrgSi7m0Se%1BL@Hx(FFwr)Kf~bhVq!S8xHr@G zS+-@x#C^Cwzs(;A=<&IHdK{(}GQSre!h`GD@X#{m)58bx1%M>>L@Sb-{yx(idNZ#8wDOKoeZ zpQPm~PkhFIi>djysd*VL#CPyrYFT3bf0hsD&jUDL?GMgh^oH{p;&`^-IERJtYy8Gl z0^)ocpV2M^`Rup#Mf2(X&i!=8Y<`MLUL7k})X|&Xx**2u)am7aY{j4UprUyGBN#Hh z{IBj^$$#ABs zafK*#Z!F%FRfs|Ejm{gTLJW0pu5d&5Kzh2mz;yG2)6EJ_cV=+9k-_N(x}ksIkQlbE zLX@|OQ;rg>7vElK!B-4?LUqIlUdvJXE+&O=TnrA6c?Zki#&Z6DjVvjO#HnsTjz_T= zMLUj`6fVYyv1}Vd6S$Nv#);G1`yw%k<0gwrQ6;9kzh?+l%;N8}*v^_q%ogW}xfuOF D1y)8? diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysRoleDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysRoleDTO.class deleted file mode 100644 index 446449b3dbb5affa066353163af935e3aa12df8c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2392 zcmb7FZBrXn6n<{9n=EvpG}4!psfG z;0I?MKl%g8mwu>@(ixp`^h=%bH~7`DKfsS_eQq{1Ly1xu_U^goo;~L|&pGGjm%qRJ z0lK&kg&Q zZB=b|&6;1mAxmKr34z{*)}giZ9lPp$Vy{*ujp>Bj73l|#=U&ZU6cASgx~4rh2yHi9 zv8#2d6OQ^50x_p7kSer7EQP+~u8j+%7wc~5)Z~g2ICOp9b-mCI=`;|?6c{-8$X;6` zWV>}@onLo~URhQbd~aR);RgNaw^T?0$DiHi=~7O{ErA9A-XR_#fqCxP44O6;oxWqMkI-tD@>b zl-R+c-FanJSjVCaD_(iQ_W5DRYSI-y*>)w6Acc07>Kz`U1{u#>?_{j3i4kN-cgc2V zl(kZxGI0opI}yie6GO---3um;<1jnL+t~|EZ$#^b73m8k6$t~XWsHWVA$B#CtrB)e zM=eFyQfQZM7VY&Wl}5!5Dyj?u@u5s!VVN>9jtK@@Sj-n^h$PPpeHqlNA&nYgItE%E zjnIqwG>JyyU2{ z-QPlaN@XK(e6JB>b0wl-Vd%09O1`tM#*?LFFg`lhqe#M_+`&PMp_31Lp8Ia@d-&c@ zO;3OWNL|NMl-ZlRPY*_?s(slyv^v7C6WpcwKFY_UEcn)kzd_$!3Nbv*RhfXkpW$jo z26z_z+%dg99i4bGM*|pSo{uBS5kicC62sYV(f1Xl-H;AN7EMSBZp6)VwAOhOH3)is zZ}%sj)O|#5(|vElJqNH2`ag&)Nfedr@NMYYo$OB#UqX-H$^HmY92wriaAQkhbZ&%8 zP8@%iLSJsPHY=#cNiwJFWP{veJ>wNpYxHC{ksRH^y*(Z}5A}TuaT~LtbURg+gk9i^^8Xi(Iy_{9iLU*i2BU`>jo&)-7=lZ?>PA Zowq~`*BT|h{^+`Tn{Ihsy@PkT`~$fqtsDRV diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysUserDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysUserDTO.class deleted file mode 100644 index f021ef183d8e2fbc1f5d9f526c57092215de97a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6669 zcmcIoTYMB(8UIeQm)YIfWV5-z6vSW`B_!#3L8}u$Xt)?mAmtJTFYS;Wk|CR&uopr= zZ7T(7wHn(BT54NF8>|SlLa;RYcd%-Z{#7GW7N`(8|OxifdNd}@I1*iBUX={GSj_Td&JD<$Drfi$8U){@wq5j zb8o@QnyG4WdxbB0lQ9f`X!_~X*N$GA8h^r}8EIiwr=NX(>g;n<6Hf`xh>^>U+F8sx zFm>+8^b3zL^5u+l9s=Te`ouV+VAf8XT`5dey*}~e^~YYBI(q#2$Oxe>rZ;3{5sy_|`+Y(5Xp@|KH5a%r*1rsAo) zYvf}B$WkMX8P8grs6HJnJHrTrq0%mT0CN3CW*uj9V@joN>IqXd?N;gY^Z>UFss*6o?W=)?65I* ze$dP!a{OQ?WI9G1qk9!}T)gxt!p>pTF?t25Mz}nKAmE_M(j*Cq*WzfhC z^3uYndTC1+-`l5E`X)VzK=*Fx>RE@K=)#G~nz;f$uK_p4)d?QdP{NB}DB*=Fl<=bB zPly7pBxV*IN_cCFB#IXiNfggk$=jl42I>2Z=H1%H?kia7l$llNMMgDVTU~0UR)*;m zomT0GbU)_2!pd0rRowI=mCn$QVKPQW%nTOLUYsMcK9`nkd7}=6&LKG30?|6{o+GuNNBM) zU}c0>S0;o8SVpL`G9mQOGC~_F6GHnfBebzHAv`OT5!zIlP%qt&Dsk({)*)WSkMgqC zi`4!yQ0dWb5)65?`LP!@WeeDTlqRRJY%MRpyi$2ll%#xvBfqV@{JoXRi>fB&n;iM= z<>mECwyTeCWRRw<)6eu2S6usqLC? zl1!H|p!-1?&;y#Ea{^Z>K0#5}x>vtd~~P6F?2j#&g!! zff`wX7SK0!@eq9%NTHW#5LTWTZ{Zp0d7v=;73uZ@P=x-8q&x|v5)N(EPHMObgAa$6 zF&tEU-NdJNUBwNJz2dAw;Ap!+=(GYBDWXubjpyVlzK-gPpv#p3P#HbdYTncA&c{j9|cOQ1&T0#X(u{- zg--2=|KJi$@X9brFU8N|1K8sDyud>ozasE3#}@>)Ii3`FFULO>ILGm2feVxLTKwk% zk8=E`!2KNm5_po{y3;$vVVR(e|C%w!LcF)*OZ4lxpLJ%x9aqsiPU-#a%+C_PgDifQ K_&xmrAO8j2;ey8i diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysUserRoleDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/SysUserRoleDTO.class deleted file mode 100644 index b79044d8e77524e5d8bc02462567d39a5aebc847..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2868 zcmb7F+fp1=6kTVgd%A(f5CSBVizbSOVIVCrnlJ=3cPAMVgn;IvrkOc`PKIgh?n#1Q zpbvSmeDVXthdijIq)MwSeTh|mh~^{IxK4LZ2n-5R%;|mh-o5tPmvj2Jzkm1%z!BUw zkP@)V-h#b!)0X#~1$)7()T=VEgQdW(2hz7Ip=VDm1=Ex#y{bHY`H}%mpyQTv$FZwU zZO*0~vv?NbB+q>AOzV{n(kUN;>mpZfB$)xL$3#cv?W57id4_)q>Eeg)>gI zE_G5;e?lPTRs=drt0AUB->uD!2xKSgwa{IVGj8A#`b4efg-%G&KpMFB=#G08S)K5`Md^o2#L@4lkc_0bn7;g|?)tKlj>BhE;zd$0|M>i?-#>Y%d@??h zk93chKYRS?w@Rna$xx}f`f?j_-IH)F*6wV;wzE|A7G}NM_BmOTz7xs{X=$g(vjqar zTd>eBu&w0Q9oAsQ zqcoDc+Da}%77oK^7s^iUjPh2>BNlcc+ln;auy6>r(jBw#lF|tjEWCm&r^{PAKM5`~ z@WOfN3mB?ky=u(NNE3-|k+RWzD>gK?v9U1)iLtS5p9-Dw?Qv%@>4!P*1oNtw0_nb7 zQPF+d!Wo<;gNe!F_!&|xs-coWy&BRfif{Bbf*HLHWHa>Q;WzM(z|QqY;$+>eR-|uY ziV3ehrhRT@v=tMWwlIT!20QN7+;B{(-m`E8SE+Iq7iEn_7~H6#O+8M6jhML3W)AF+ z*^Zj{Alk;1xxK;caw^WOg-fa(tig<`fmBq=07RTX?)vXyuP*i~Hxe@8EMAH5~!Aqw^|u zQ056}wstqHJPFO#ow2oz7LF$|b`v|p-5x&o@@G>PeCqw*Vc*vjQh0%@asean=W4|c zr2ZmzLe2ChK)qW7;*r<{=-}3Xa_DDK*QZt>c#4cO{rT^)?;A?Zx%I>zNp33dxCME7 z>+EFIhk?!Ed$$T7_b`F)ir@z~hd;Pg_;?5s_?`%!mr-+Z#4#qW=I(yJ|4ZoFgZwWL zUqDYk$o~v6KG45{SEDV3*DellDQJVgqAjaE!uDlYgIR3_uQxo77IeBCEo8E~^2t0x z=Q7%}dN%Wn({RC{({RDe8p_E`oQ$m5aMB)-P`YXUuE#{5_UJxFaGZ14je8j7Os3Ea z7h}|=S;;cqq@>{-&f+afI>z}tK`DbOF-}r4;PU{SqGaMUW9DHQ=AU@ZfcOhN2GaaD zDej8JmS;seN24*q;%e$c&|F*$lbxD8T~$>j^>2fxKTS$!Dk`Z2eKcwvFJ`{FZmz{4 z>M{hK?ie|)jYbXH+c7fF_Lv>{Wf+4iICn$oj}|m#$ZCnjR85Ob!v#Guv0u?kW>$|( zdpB;uSR626o5m!HI8U}ZFVhQ@)a`WvC1#N3^>COaS1lOBPF$p^;$ZUCNKNuI^vq*z&Z~7h>0tmlMiuO)p7;z zc3$J6>Zj!QV|iG~A97iN^Iw6ndBXCu J;NljSe*kVr?pOc- diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserLoginReqDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserLoginReqDTO.class deleted file mode 100644 index 4ab84e08e1f80e5e59378fba0c1adbe04875fab3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2495 zcmbtV-E$LF6#w01H%UthB^F93Dj%&j{a`^vC7~!E1&Rr+4OGF8ahqJ5g=DwvZovAc z4~#F);Ec|wPx>N0Fd{SB&dBKK3(ojA_*&{8;G>Gan`{UrQJAsQy?gGtXV3Ya-#O>z z*T2925x~=UBZ`nfrr=bJg|`g(wplSMPO(~+p5ZNcM%9z9QS=?dl^3eg^Nsw1cbdAa zGiTY;^1_i*lTl~_-RI1UrcpNSIb(A6oGkcJLz)$R9} zmalxk*eY?$mBny?W#06>OO9I={h81KAgVoUkvpftkpb zoyx3p-Z&<0>6*SQ5|4J606QSCC5||{1lDCOTb`^|W~F_qpA$A(wYjgRVa4E(W6kT@$OA`!(eN+sTmeIC;gIBoHAV&&S$CXA2uA4J`!t| zsb1xw-aVPr*-l0rj$;HV7NKC;G$XVSYfj5@c z@k`QWk11;UoBg!5roTr~H)s|)FlZ{e^1fL(pEKtJvSTIFE2%;Wga=a-3fF-+GT6_c zQ_~Zurr((F)EhdAqXND6xA~!}RW3?5hU099)*&2hq%_uv zah!#qUct5I)x5I_2!oH#bu*%fQSRX2hS14}GsOK`?z{P3M@_ef z^+=q>Bb3?Ot*0C6r>gzgbhO&UuOr+g`QFUOpe*>-hrUJMHxxp6l&dlUeLu!EUN^ww z*vcIfexRf659g>K1I+V&L}@|@F;HY^_&fC7pwtR!W8ETvq~O-Md4kru;6@SjSZ z{(?10?H1NwMSL`=Ey8G6>`v=6*`1Cgb!8K|g~U~KCG}*aVWeGStZ+-oj@L2V<)?%_ z{H^3wg*^7Mj3M;1=bxc2j3FGrvy?O(V`-nGq$7tu?4uMxn*O(Lb8s*4>00Wo_>jHa%cvV(iF``iaTUGVDsC8mhr~~hNYqaxb;-~jF&2QAH zU)*$eX1_L8BX>)8rbKFE-NRQA9bLrOn@Ybst*L{g7M#Qs;XK;Xo=8Ooy#|oNBcci|9WhOvWlahQ@;BkcsVJ5*>SO$ZXj*B!3SeMl)bKyMf{Y_!!XnlT

p)y}YHZjFTWvk?AE{izzUo$xnBq-F)*CtT&mRQ2e?Pq57 YEfK<*T8Yozy{=xRTV7YM;dL(m0M#AdumAu6 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserSaveReqDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserSaveReqDTO.class deleted file mode 100644 index 6fd866cca3d10d086372aeb715d8a8a14ee28852..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5189 zcmbVP>vtSw8UM{*XE&2e(G4!*Igp$q9+WS5j-UOcpFGEq@)!6;#NRvbOlOnbcK2{jGW)#G z^Lw86xxLT4^SA%~@jU={;x}=G6zEg=+4RDZwE3tpo1V>QidnOeE-Vz%#e!+4GfqBj zo5zc0!AXxT6dojR%$PSv&Evbq_r(!W&~((8H_}-nH=W*h_^3JM#1T`l$>m!4^q6T| zM%H@FIGi;VgshB$=Al4k%(1Q9biabsXffwlv*v_Vun66m%jF%zvGTcsg03MNDx5H; zr|FRqNYXp!tl@md%#PUkIn#C)XeT;vWQ$^_!CeYe;ksp;nJ@!ZxE3+(HD)PKtiE*d z!_&(vXMUm}#t0n4Cb9Cy+bbuZa}|xO1Zu0VyteY@`IW^NU93816bdKuHsgq`Tt2n> z`jbRw%sIn$1_ke^j@d-Z}aK5e?YZR+eQ$1AwW%jIBhzCt#ehqC$E!}(+BJ!a0d4adxI zgUG$iV*+$YLmaAt#vvS-HFo*{PZ%jj%;3;@eL$9PB(vX(a z0S#Z0)VDNzSyJED@Ktksw%2hAJneuX0l{GK00Bb+f+^tv0!Gr^-y0cqa(i!8Kjs)y$A*nL@5HGy zMqx&rRt4eCu0fI5f`&O9XAVY22ZwhvNrN0jwpl1<9fI5pBszj%;~joviH;zML`UFn zq9brE*5Ns#I(a#*<9I^B=JhlDo}!h_n6`?i*dk@GicTxDJ&DKh0}VgK4!SpBmc;03B z;ga#9%kX0+<7aFis)*s>x_wsocy66*e(&GFwU=3pE)nD_8orO4-I7g+lD#JK@T!93 zSiWdanfF=Z?buqDw%bIO6|`4-0dj_JS$*@u>X}n3&!7AEpI=@1{kf}`mp{Dn)asRY z8C%9IOxf0)c%7o1r!LI@DCc}g%zDxZz8;(Sn=E zkz6j_LO6&fm}TKTTTU zZ?yYuZ2JR=5Wc{tfB?<7g-=Zaa4R~w;{Btlq3+rYanx1usIN9doRn1z-Cmm^4%#Y) z?x@WW=X4cAchzQyW1jsftE=Czdi}K-+>RYI*v3khwt-G>LxR`c^A5IMAywW7trFq& zfzX%7~gt9dyxJo7EC`CZk`-&L!5IdeSon_cs}aUUXHEAA=lprO(Z>KEID%O**A z2Z`aO;C`azl!@`;xRo4l@9F+6qLE8I??ZVR(eS07zd#x8 z?Owt++$D*NzaDo*Y-mp_?u#aM)fK7NL~L`Zbx=>ZB6hf^ zm2gE{E4SJa8Jw4yFy4cMA~O?ZBg~T$!7t+kvlYfRoX4Z2BAjI>u|O({18ktjNX4i( zjPH<&<2im5eV3Gq-|_SHd!!PgNt9_cd_qQqO`<4l4E}t=XRr`DwDk%oK*A;u}$?K>G7H))~5tffP`0`%Hvm)p0 zW#e5uexUiuWt4Qu7dGjww yFX5Lry6zZWuPNfQqJopbt#=vcE58!g-g-lLoiT-Q;o1fJS6uPq;MaJAkN*QN(V8Rx diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserTokenReqDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/request/SysUserTokenReqDTO.class deleted file mode 100644 index 035ff594fad60d52808d9a90d05345107a531203..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1987 zcmbtU-%}e^7(F-HB_V{C#s*A_wpdh>5Y`{~qXeonrInfhLd%SOa!IaaOR}5pZcu!3 zeDcMaKKRrb#|KC212Zi%3NzMm^hIaqjg5B=`My~-s!pk1k)Gjgct+imu2J$G!<9Gc(({d_4eu&rSDZCz zFUlJiuFQv^3G`hz*G;2h+N;L=%5_=vL+BDX-iTU`u_Rr~tXLnID;3Gj1mJR6x}N3O zS7$E>h|2=KImh;V)ApCmN?q!tr~ZV1?yGD9vHX6PCEvB|)vQ2bv2OcTRW4heMf7Rg zc6`$(t|ySpGq?Aixw=Xf=KdFBx@HxelB_JaPEET0266Otl~tho{-e!TPh%})fv zO10(6Qm{!Ryej>Ma!MOXc4Bj~#b(xC@4zRPuQ=5eXU(`IZRwi6EHSZ`Ba?0joQNWd zUV)=|%a(KX>I!Xc8WzhtMfzpZHA-v+HNR|8<5d2C+#S=0y**9wk#9A1a3qT3h({1aDvGDnXW<;Y z*cJva#PQ406^JOE!>tnNX#^jwdY62&xK=Q0Ela{>(<>`G1%e~VS(Royis$hH(H0hG z3o}eNOY*Mt>J^`pM?hiUX%5VAPBHqxpthBwUl2K1&$*H?V zdC^kMHPFs)Oz9CA`mb)F^!RVz-+FN8v)wN~-2ME^2X}UMw?4YRbx)wDB)y_*)l_3) zh!+{;qa%P52qDaQH#;PN2p`rk*GIVSb`6hlFFOZu#`^iai>m>?ALnCm zF8J0{-ym_9lK@U~R9nE)gB+vH4R``iawTvIr%B^5&;(Bg)X7x(TO_tPYe(vD?r0&Y zEKSlw+^q{P6mwQ*2l%@@s(zYs>C{)ywaxTT5VxQQH`6~t6h>3q7;Y>%d3J7;!-SUk z1w9GvXB@kYXeOa;BiY!YZ4xHfrgFRqzsD_yG)74$jxl7YJb+;;A7hL?ganNng@)&d z6-QSn{0ENEDvfpw(;USQ-huDNHveP@&;K5FX3h8)meG3 zaHeW5j#nFYC=<>g@Q_8N(F7rA0ACL|?ymzv6&m}f1Jj(^PmshtOuQYN+`&1;b{o^N u84laH^lyckXmJ#(DLa7gSNIMtcdpBW6&^soaTSHVW||``n`s^k9R3FISc%^N diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/response/SysUserLoginDTO.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/dto/response/SysUserLoginDTO.class deleted file mode 100644 index fc262f2ce7015df4b7e252f4e7da1e2e3279d47a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6965 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysRole.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysRole.class deleted file mode 100644 index 1fd04b90771439994a2ee454577af2071e981ff9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2627 zcma)7ZF3V<6n<{9+obIlN~Ayl6{Kj}v@9Z^q%R7TmS9t`fhzb?w#lVg*zDHLrept# zKR~|lL1(ng=!~OZaK_)@&+wy)&)KBSl%~*5clX?L&wb8wo_p@ipa1>*D}eL3pF%<* zR}O0S`U6{kYHlTH*tPX# zCvxknUZYNkNc(j+@NK6YxobMqj<={o3At04R!}z-`mP3kJ#zeL z(eWDEBs2L_3JJHOkePevtU0#l_$ziP3SEC?Tp_#AAg!8SbnEW2r!V_{5Rn9N6vpOu zrRQwL*|#08D^!SOu1Q)2BU)eOXLL`?3zgf9=IZXtrBY#beo2Z+hg4|ZsS)Muo={>E zGp_c8N4KnA^5f;^ijE2_{@~DXr}B@r$}jk99R$eCc|mPCcx2CNUx!Yl1>LyHJ?MtQ zF$+EDRoFl0`g*=mTh?JrLzE86+#QE|L~UA5BdWSvqVBOtn68%vNWX|0lJzYM8Odta zn}rPw?W}8fku6fxQ8lRCazZYQ*eHbJl1(UuF8y`G@#x-$aC7;gE=S|T_j;IX#6k{3 z+>Wy2Uz2EYj#(JMp&rgepGZ;TLP!6PQ5CdqmUdLE(pU9ElgmNiEb?vir2`b zz`8?SZ+H=d;xyfZZNzjGG!I4!vkHgXg*Clb8m?E-VH!l~Z5`tww=&s-8GLME4ueFW zaD6wL64$(io47@nv%0E%7B|*ut9I;OE6aEq3rsV5Vw2uv8n;=&us|sYq%|+! z*Z6S$AmjkCc^Pn+O9k=>zga#uZN;xS@*|FZPa}cjd`pPrc%5&n8GtwNCPzwo`xQVZ z_XczdgDmnzMtOoKgu+PfCmj8O)=o-7Ku9(ziPaS5G`%LtfkZ*thur^=t|3zTF4C0yh- zCMeA`-ls2#5lrC&S_Wp>dY5RKDB>9Mw7M`({1fO-rT@Xc6x6>sl!DFwG|eMTvsBQ>^xsr%wTmp5c0YqVz4A~>gxcNX$|6SYMtNy$FKWl}Op>5vPb9@nh Qzl`rJxs$%)!#io|e;kbh_W%F@ diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysUser.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysUser.class deleted file mode 100644 index f7aef6f159070144198d1bb04e3f4e4e18c403aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6778 zcmcIoS$G>)6+UBaBWdJCUXp3j;uHnqtqOF3jFYs9v)~Y?Ax;cU0e5Uo?1{BF(kO{3 zP@oO_lCo2vP?m-z&=wkpE|eB%3T1iX30~lhH=g-e!hi0)qmd&!(hL49&417N??3mR zbMLt`diB50zCc8`(H~>frqR%BsgPYdk#)}6g>0detLB|bwz5>oRx3_9>l8iLTgpx@ zRgR$JaxObj$~k$B zIw9cN`6;K&lw;$2G|~=elo~4)E1q5SrtEyxiC|>>r)kvY<}^wlJZYb{vw6EXm!0&= zZgFl@BlAcV!zwsaZpEF+JG+X-l7~S+N28I0YYxw@@v=v4^c&AXD{`7|t5MinTEu0z zrS9XoqhOcE~P3Wot_+Vi5aWC(q-EbMNV*=&qL?J1>>u41M#W zU8$TwL^0Zmo%b|~l}kJgOj~C(?FyK47VWY(4q9A7*fmPbLdtWFB5ufq3~SYM^VvPH zVgO0$pXR`VU0ux8*h$$?t_ZT_fzn-(;;^|eA zmp+&;6=q5c+5Jw@DdR32neZ6aPn$CIi7c_r zGH5;9609Lp#^xOcnZCpxl{B{BWzYt;r$8U8%UarxX^=Oj?=k2`x=GTH)zZeE{RZ{3 zN9VD~to8aDVoUjXWAa-Kx|v>!3|3?Yd$%+ua9|2+XTtI3OS!{#84>cZn-Lpy@na@i zexzi}j}M{(CPxLa08+7#BtHU}2we5^?p7lSrp@DERxn*mlBMM&`|5}8&yo8?ol{ji zj}fn!+}$%Lomp>m;CKRIc$Y!%rh6ebYZv!2n~nDw^cEUV&aGnRY`U>=s4ZW z%o7G>XfvaEgR&BxH0X^ImT1wSQHjb1?UcwfXcz5fmD2|8rQIl%rIp1{ zjTz}GdGk&g@#N*6QF}8fjD9O7TwDZnX=j)c#-L`kOIKi!1S~&QiWDI*NJ3DQ6d^Fg z<&b2$)rdsH5RO{$N=aYP7Ve;oDdE7-AqXo9nv|$FNm6|s>y)H=Qwl3)c45L^R7FFd zw=45pa5M^S84wx&tU;fl^9c0eBjXc$k%@7vqq0+}@+yw{F%D%osPRk?zj!7HRXh_! zC6bZFThG)c9M1%EOJ?dPk<8SOR`*J>lE&y;8m$W!p|tLLv;^uZF z=rMZSpbIpC0dIGUuD6p--#6$7^h22J#YLxx(T~(`8&$F!tGK$$s7^n^ZHD{(8Sl{P z31RT34Z~By;Lja~pP~c|_j3TyxP(}080o^|%Q zc}F8d1^5=u0y018&J}I1T88Vy+Q%D6Tm78i_Z6h=Z@uu@Md&agC1Gz=0F4(Xj~*oMyO}2`4Ht+OI>4=lObE zx8Rcn)^LpsK1~Bp0<_T(zL`Rp%`mLw{Nd*E zx3(%TOOKN874mOuE`LX>@?5|)Qu6DB{E_DJ+gg?9x>%E6FXShi%WrR0UY1)mdQ-?B zZ7zRjtMamFEBOsV{uoU)TbN_5%FEKPH_JMl{UMWlvboJGhIijSlu91tRAzQNj-|xZT8fWs#Y&ZRjbeJ zWm2Ca^_qP?DSQzXG1TyA@OPOjzkX`x=?tAkqIr= zUmK_Q0!8pFK1S~Yic((7(EEX6RMu{y2Y_^Xn6A>kLqI9|8$ChifZFl&a-Kd6)S*S`|fnV?b%`0PTbS zEOl##=`Q*NP>)u^bKxg}dbKJZ#XbepN1w+0&(fxt{%>lJk@g?zi_r}Jb-?u!#{X~7 zFS%#1al-s&-nemS8^X?qS%h~CXKSs~F5+hk@n6E6YTI&2Y)ic6q3bn=X_&WV3fnT> zIl4W(Lu|f{oul*EdV1&31&WO<)5G_%-Lb;#FvH5D^M;hJIV&Pu*o&f*Zbp2UYej`C zT61BC%3cdrOt`Q)Rj-)uDp&!&Gaah35eB%Wsc67Vwp>U!@G=hOz(__vK!CK9|IU#2UoKkKY~ dI}XurMCtu4y(+H16F(sEW9{$p!4Cv~_#df*+ROj| diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysUserRole.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/entity/SysUserRole.class deleted file mode 100644 index 24f9b3b407d94c393a31ddf25318afb60add513b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3108 zcmb7FZBx`%6h4o|osGd-C^xzy3}{XQ{4Hn;^5| z)y>t1rhIJG&AL}@I5IGU)xc~7(l@0W+Tp5MS`Fr~ob?>3ks|0EA1Yg3-L85Kv%Xrk zLOWP?8Uf6N(hY3SHLXf$uSj23JilsAdsXQO>Vgs5a^|Jakh$VzLE@UA&P$#fgq9o5 zTTVl&h>rh+pfR8V%dfzax5-VW@tBQLnF7a|DQ5i~fp zV|dnUoO#>AxndQz)D?CsNC{V$@fz6E@nZEh&^XoviHcGl&baPvLUC4dcTG4bl)J z&l~h1BL$5b^bs9JS9_cLHt~kMys##Hl$L4iRnlu#P~!>%h4P7Bd8ju%S{spZ&D#h{y93lK2hK`DC3p}<{7 z$!qu(dDV8nPS=K*hd4PHE7^;#6*hcqFYSDf-!$pQ-uiY-;C`4pJKH+9X3+IG(TPF5 zz(g!?`t$)hFonsf&@oaejg^K~8|nDrj$>_Lox!^kn*9Nk2PAdTL9B2WlYM@_gCF(} zVFTB(b>ncP#Pt9m3!Cig7~aS6Ga(DS)&8HU=Q)HndJj*Au=DrvG-3dqK*$*Me0z2= zbaHQoaQSvIbZT#g`X~n~x29Hr@ixw-KmQB$`~;~rx5F_a$&K@lsqY6`MfZVkLHXUy zpWLhYxN?d4Ok{pwck`$AYCf)iV!k^vkFnQEju=7W?MU)TzW+y3m1p@sN&G-+>RJ8| z64L|yYh*@C2xn#n@F*yQf6>0I@{$fdC1WtFtkKyfVx*t~GEzuqRmP-WQsyajX4PzZ z1E^5Y04fypti~Wc0clyi2~wURpj1o$-H!u(U85&7M&l?;H$A2a^kf_Ll1-mOm!f{E z&=-&tn#2IT07<23Xf8rZlLPc6NE-QQ{>zYbx&ohhGBo`k+OLuLmkw)m4*xpDqp{e& zQG|=AHO4@$!XKhma_Kyxr6LthDzQEhl@6Z(9Np5_VhFl4jLvn9 zjw$0&fqJ?|YbcN2m48aw;2M4Tfb}B^>pF<$5}c$nGy_RNMn~udBsC)WdrH58LIKG_fLOd<0lvO& zV?{TqO+XW)Y*r<(^aj{Ea;p|#go!UpE01&!-UWCZ{*7+k$&_Bu9CNuwUuW*)!ThoO zZ7dg9et^dsmESa!h7*nif4;VHx;}4Tklg-OZ=Sa)T8tW~h92ieT8cgkJmnwZhq3Sc E4||GAG5`Po diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysRoleMapper.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysRoleMapper.class deleted file mode 100644 index 4f8173027e43dfac3e54238e6abac8d2911d4c04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 335 zcmb7=Jx&8b429n$z$T$V90V&;xM)oT%D~H6?UBQ`l)|EM$#?RkjVRpy;M|=M y3iC$qdXCAL1;74{t=IoV-j4@=8kRoln9qjmhq|~@n3lLKPXi{X#yrD(tcx$aMQN7+ diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysUserMapper.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysUserMapper.class deleted file mode 100644 index 4edf0505f2a58c52a9d357b705d0fcbb3b579c76..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 335 zcmb7AyH3ME5S&XOPE3RNkgSmCj3_9mj3_KVVC`(8i+n!o9*Fxj3O<03LR^eeBoYP1 z?r5~TGn)PS{`drNhpPfJh1<>=N?Ve5He~E3_TtGWPtl7b!{eBtN&Yp{=ZO`#P`KXn z8&l82j$YcmbfLgPfevCVTcbBNl1VKG?Z-a)JaBSUdt@)aQVL~bqwC~J_o8rf;X3Fwb?Fp9aiOOnr&fgyj#_5ox{v diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysUserRoleMapper.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/mapper/SysUserRoleMapper.class deleted file mode 100644 index 286e3c27e94039755d158c944e562780bb78e196..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 347 zcmb7AyG{c!5F96vOF~1%XJnhCIz&N1l?aIwAFy{>B1iW5bhab>Ybp2uJ__NSKtiAt z6uYB+&1m-haB}pQ_Vs9&P1OFy?is?v;U$}m{%_LjXY>03O9eW z7AF~nS*3R^huG((!}_;$x&Ei@?Qn3`xU@ls^wW5GS7vt#;~bayfxrmGkf)dpIR6B} C%Wi-G diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysRoleService.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysRoleService.class deleted file mode 100644 index bc9796cc6fefa8cc99fbecb30898bedd9e5bfbb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 684 zcmb7CO;5ux40Q%u+4!2opMVQKz-@>VLYg$RX+`4fwWefhn~|gw{b5`<@B{c!2(J{x zfC+X;A}jXu^Lu`IeR>9fQ|JcJP;e5N49i>O2g)!ragnk^S2`>lTa+``5o1`ou}L|6 z4+Gd#(4EqpFr_@f;bh8@51>`UO~_1*uw?1*P*fNv(@6GTCZ)(f*44ory6m&vU*oZH6Dgz!Y`*pmqO2K^a z-Ll?l6<6E!2XD^3_T`5#qKa&Vf(?pF6+{ki`J D$zR<9 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysUserRoleService.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysUserRoleService.class deleted file mode 100644 index 88feee2adf2a106be91708687fa66eb4d77349f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1148 zcmbVLT~8B16ur|*m!fDz5kGkJ0bZB~jgXX(kQkGi8VHLq@olXwl2ftnd`}KSI4`a!ph9`%)8nRAQwFM?p1g}B}%Yq#@f8;V!Z diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysUserService.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/service/SysUserService.class deleted file mode 100644 index da8a25999cfd7b8cbcc373912813b277a0f9e1a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1333 zcmbtUOHbQC5S~rRi#~u-Xz7b9T)LIu7SvvmkVY&m=JTr951Rg#!LEeM^SfWC!2IpJb8bF_Dn^`LJKMswP8?=6eIQ9%!Tq z?k~VIHZ=D$rg7n9cz)vZE(gl#5I@V9idmoB*LQv*7!1bdV7Ria`CBx9U2mCNOs%x} z$RpYcx)sPAda88oH0b82Ljx+%q`wL*!y|fE89W4ksXT@!bkIZ13arp;wSd>)X$jNG mwE|j)XVcIIY+ge{zUS~_8rp)F)6lCah;+R!)V(QHzWooXUXX48 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysRoleServiceImpl$1.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysRoleServiceImpl$1.class deleted file mode 100644 index 83388057e9bd474d03b832a386f405cc4f4dbd88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 977 zcmbtT&2AGh5dOURBVnPT{FHwXibM+%rV_VC5vYI^DL|D(?b*9KNnP#QVZB?C8?V5l za6m{LcmN&>G2Xxdp>oNtY|o6xGv9bV|M>asJAh}n*FqpLh;1g9Gf5v*CNrCqDLLtu zPL_^x$>UVVBz3k(ASrF|9q9NOq^P$&3sj23pWM&>#!ljZQNl-RN&?U zM}IRSwmC_)(9*+U)SP)t?>(TMvrDfI@y)A56-o|$v5Y+&8bkShs+=Q-`%IV`zar7? zde(S}M+@f=pk2MLfF+>w={iGz6GS-40grW#VL&HZCOb^H7#UvTh#m#QIAFc7; zdw+^v2t9K2cN3>WimMc5_bS!&*1j0evwpJ6fImlLPpkR^8-qGmZYhNtO>s*3AL zE*ciE1}@*ydkXUT%Jyb9qxYQ%oEECfKvYE_c#gy*nK)OpYK{m(k7D_`Pb&)%XS(vM zoN5EBTv{B^sX?_HxXdu$2VaOjgr?6msKh6tkOCozD@Yj_XPD?r*QpqrcnfbcBx^EQ z4n0pg0mJ2VCch_M2yP3f#&b>}YtqXm@eZyTc$eWq*GCiAaf4yRa)OeuLqeY@ms7sn zGI3iOFvvjB`i}g&ggc6VlMIRU+FGV$Aam9U(Vkaar)sGfef~U@UXwpj&!?VfG^CeA z8ly=tOq;le86rAiLN5H!B0%5t=|Q#*AKHcoqyi!M9^N-_pCP4kBW$ZI%7X6-KiKmr ze{03f4HFMA%U}ksniT_2pO`!8j)ZKM_hcm?ainK5}L^jGg_iw zQzU4-Z1JAqVGq#`%61b&S#(3MB3CWdy01jLzq)(O zr~<+8=jlN7zJBxoqOL3O5$@}HmW?o`t7vqk>g?@D1uGgJeQ)wthK)pJ(?_R{sf;Xc78-GI2w+cz{)W9A%3dds%(ed*%{wUHS86LkL@ zqLJ=N^gKs1P9vi+F?E3CPx`Y-&tbio!fW(ywl?5(oTnM33>Qe*MZNb;t>iD-KTPwL zLtNUqyN|JbT>YNLn`%73#QGu9I|rEBn3}$~kGu2nRQwhAA?9|->W8skG5-n+zvI*S zL@Mzk>4}j|U`)Gv4db{;eRzV};Ut#mseD>&*=zemmhl;u$+vM#)B7U|@;Wu>ReVmm z(zr?u^bz7D9m5y&mOzel%xe8ga_w01@v&t7Sn~0)GuzQ$BxYa diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysUserRoleServiceImpl$1.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysUserRoleServiceImpl$1.class deleted file mode 100644 index b468db1b5ee0632012d5c0920f2e1da56065dbbb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1005 zcmbtT&2AGh5dNH>hJ=NN@=y5_%Ao~>sl=^Sg=mWuDL|Eka-Q9tq^@@Du->i6jhEm- zI3OerJOB@cnB8yyiE_!VY|o6xGv9bV|M>asJAh}n*FsI{wxAx}7C z8?nMler$a2sbn22n|52G?HFtFU4?^<<-=_rDKz$6%xx%~575L)2X$Ns(85K9`bO!n zIxv=B7iq}Zn8HLVS{t~Ck|WAYssA=M$}$!9mqyjwk}|umI6rprA!U?u&Y48+j9igL z{L+*V*8km?Cnt1D3hj}ZTFQ$|JU>-{{@zY*?w3Ui{-AFyXL|{G&mQ-MKy`Ux zs@pADR7x^hIENbA)yu1i1auxg`XbX;1fNB#VO8dp%J(t4A_tY+!6mGTc3DPKq4}|k d2Cj%w!&O|X*6X+-YXdj2j=LgtSwI+1>Aa-}igo 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysUserServiceImpl$1.class b/exam-api/target/classes/com/yf/exam/modules/sys/user/service/impl/SysUserServiceImpl$1.class deleted file mode 100644 index 5a590ff56b65f1637bf93919d6f647b729f5b083..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 977 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 U@)lq8%YP*)6bmfyZSw8j2Y?P*6951J diff --git a/exam-api/target/classes/com/yf/exam/modules/user/book/controller/UserBookController.class b/exam-api/target/classes/com/yf/exam/modules/user/book/controller/UserBookController.class deleted file mode 100644 index 9b9670c54683ae00a265923a09e21d82c0437f7b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3392 zcmb_eTXPge6h6JVEZGcl2ct*=3M7G~6-3Y_XcBIL%{?SsRP5d9ECajK%Ulxn4`_Ju zg({`WD#g+&AAHa%m5NsJ1N;a608-{pSbjaT*~~!5ZY*E6w|mazJLi0-`~3OO?@x&6 zZJJF|f>AoBio86_R0>2lwd4$mrehv$^-IjT^={t6BUa5h*yN>U@E-l&0` zawHceE2=jjT)C>ls5Og&N$Jd4Imzf`CaV8D065ixRqqwWG^4f&-}bDcoVHvmTaf*> ztvumb%61u@$|xt#-I8P3`B_I4<-Bt4@T?TJ%V$N-Q%;$Sssiu#JvDDR(uCRO)0S;{ zXBahfc1<&C98{)EQ3Gu@sD)CDwqz_@j`+o_bfyISGTNR|IZ>Dvj-~gN!$$9x1t5Jj z!do}L8jUFn(u0$WoiR(*M4O)CI>SSzJ0b6$of=Jdtu5GJvL>YK!REn?rMNpU@_AHs zH483>$Y@DAK@uU?G$#r^TpLUG7neW#{OQ6s%MZVMQEumDmS-*7j2Pqq)C#M)4h|^$9=yH3~iSgmYM!gIuvz%@rM(qYQ zQFDs+)9Xn(!01qvt}m{FL2uAOlrJwmR0bUB?8@90bAtPxRp1#5g=nS2)Rm-8Mkk^+ z>uv#qy6Fho$&p1hCkM)bpSI43n?c>UIo%TJuIrk^JqGm>M;%;0my<4VbpTh?do`j} zx->fhuNc+MKt@}KgDO>v0Z+{(kp~MHU0BD?SRhj`ky|FMye&N60ZIR=)9UG1xX&kB z_tVNvr@QG)jeZL4WrZqQrt*2QoJIS%rGoF`4#Z^$E(%k4f)61!xpD7jz;xs3!l%oR zeqH+d`=$F&bQguG)C79ZpyLFQnL5L-L{l%`v}R48W(_XHV-;={gq`Q3+1sF2jpP8> z;aI+_^wMdL6&wAGs8Gn>K%s7cjCRMb-*Rc?3cgyO>y6ih(ajBk{4XAwZF$cd_Zf}G zD_fhfH5v7@+qg`t_)N==qk+)_l&}of#5tg1t zf_Em0jZtb+`A$xrxAeTSXXSodoyvN(4x_#6Oa|J6C-S(-Tb3U@T>kdUrLTV6*f8LF zs}5nUEu1;^v>42r^NzCfJ$mZIV~g<%Ln@<$etoefvD51&tc_SPis82vJC2oMZR&nZ z#?SbZpqKEgg^Bjj7W^8a0Bxmh*dax<14gvT{gB>?lU*+Drajo~xXf!cwG_K>A%A4p!VC0==@tus|JGCA@1y?$G+X8%x^lpNNyN^Dm(;8hvkem=* z8sYQ>=sH4$D!Od|^gaN!B8?wVKMW2)H;h4l8?1gii*KTh_;bJ6)q4i=A zsE>}Jy^`Zg$n)4DO*SBuKWOF}!nsz7D4Opfl=f02qV{S;?Lhq@P;aNr^bvg=N1dRX b@RguX0=)a+SwJ)!P$5SqzU{$2q=x(#nk~v3 diff --git a/exam-api/target/classes/com/yf/exam/modules/user/book/dto/UserBookDTO.class b/exam-api/target/classes/com/yf/exam/modules/user/book/dto/UserBookDTO.class deleted file mode 100644 index e4fd47a95515d7d660d16ae174c5749a73b4bdbd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6115 zcmb_fYmgLI6+S)hNAK?J>@Ls=Ng$aR_LWgIn)E^vSRO9!0%2hzXf(Yuo!w? z2>1w!F%ch#5+MmHCMHD1kSHvM#5}ArR{6^x`K5pK2Lyij$Fj<@O2zN=y}i@REX-IX z#rB+g&Ue3i&$;KE+x`3hoPU#uK0?2VQb3{poL$WBeI#o>Y810YJ6|oBm29T`LM?-Ksp1$VXUr&6%`i5^{}hD+R$ig>aBYcEr)-rb1{Bh^ zR7;LkG{>xp1?p9$lI<7{NGl3;4`boV9%Etx8#ii}?5b&N#Lk7tZeS8T4ggI6w60A4nx>N?9%=Nmrg&$mP%pvAK4g@Y$9JpRJPqcfL}o&mf%ou7rLFCO22>8-<; zk34zr7VT|yP1(2N4MH^&pvKnA*ZB;fO>RQfb+$NZd8TFYowenzELv^qgSdRV1T z(stI3tMqZ!DU?^~19S&VkErw^Ax*02Zmw>pN*@zaK_#6A7*|s1ULj4Zw3hBbKeFd` z9JwdN-gYL3}a@aj8cb=4~5&2o&M#gTGR$V+XRm0y{lWAuHMen7+6 z>9t&Gu&?oc>~;Y)D3 zZwY&d!B0_PeM@R?x_dgs8~FKE>v}~~*AZ&#o_5J6N}%^fDF!)?8#;h-fG-z}TQN@Iw+)(9h1w~-gE}DN z5~#O!c~)Eo_11-+71u(&Rr9R41?sJfJu7a4dh5-e6^Q@Wq=H4!> z3o#EJ5PmO1JR%r%c^8IL}|JcPgMW_{UAmPH_!$|%bO!Y z|7}2YS93&Y-wlZFZjK1uzX8#T=7?~4G$6XKIU?L@4TuJtBf=%tfM{KFM7UEM5Dhg) z^a&b9`CgrnI>-Z@fjzxvsrOY#^%=Q9AY?{zwu)jO0XmF#ShwOgHl|8z8>F;iqUi2$TzsRM3fVMP>{fcJkMZ=TyH@Nhpjp^@emR@vB zNq>_|zm>K%+Wla&^rGcT`deK3vBt4q*DSs0*^>TNm;S-VyB}(nUNn74pK32N8UK9H?<0A%Z(S_gwVC8$H|^gy9g=tjZ1+w?tg3|{Y2rf3(H zajSMIV^qNn8=#D`o*d|c)T6ATDx?stS2DC4QkX`Rn`sZE2o>lGJqjs`zkkwRJY#g2 z{z&^E#qm1!9(@i{f@bI}eI8Ph-k{U;1xPCWiM~x=gw#TRp@Z}oq*h$`Q?wsan-U?D zz62?y+)nH0%aGcYUb>$SKuRkc@Z$9qNFB;%yv#ffsgu46UyF2eH1;oQjgsLCL5@P)SE0Rq5T}b*6e-YLvJ>7%2@?8?RVrjspR%z#+wBuec?JFBMF^ z>ZS@FgH8qMKT-oLLMz?ES)3Y}MA^hry(cN!KSN)8nDvGpVuKcvmKYb4Fy-{HYeF5l zlVV!fGnsnCHAQAks4g*ULXWy86qcM7^-Pu?b4{^X6Ut4@n$qL036&;i#XVC|Pq?PU ztO@leX4!huHKFw6tfXsNJb!xc6CsiD4AS4}>+}u8GfaP@Z$jdC^S{!!5aS@-h7>&n zDTHtB*N~8$-rMora2QeqC2)Yg11Sp3Bz+eWzJ72nM(ufZmT diff --git a/exam-api/target/classes/com/yf/exam/modules/user/book/entity/UserBook.class b/exam-api/target/classes/com/yf/exam/modules/user/book/entity/UserBook.class deleted file mode 100644 index 66568338831a4e2fcc28ff0d2e646c319e0d6acd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6249 zcmb_h>vJ1d6+dfhwJT};lI^71gpd{$?AWeKAVAhhNa8$Dh|@GqTpB3OO4?X!OIk-- zrFD6~-;eTYDNr7T21=kUG!AWfl^MzmpZJhZ@CE(=zA(%%%mCqc?%lQ4ksXN{IP{`2_q@fd zQ}tbcIeP|*gBWWRQ)m~vbUktJZzH>d)HchNEI`{GXywms?aQeSE>bXlKiI zbv`@e*WBv-q(bJY2If_9X5G4*FFOaSRnNyHz=H)H-*9^NDlU84hF`7-F7+b6R-u@` zyoASiNA9`eX`tbqI50DlJ9=V{7Zc|g<}l~GI^qyhIN~~Go`uG~bG+a<2cKCq7KAEx zp}`9ELPHFbg_>jg&S?YyL6z}o_-;9S2wHHZqjY{6BiFk2Bcm*Vpja0%G2FjRUay_i^DmO)^6fTk-bvTN}$#?RSxWFzn>@udeW+iv$7o37WIeIpUHNVZE z`-uGucJ(l$S^0K@_R*V@bU)2$^iC|e*;1slL1$=|k+wmH8L3dgpjT0bCC8vUr8IBQ zYo+8GXrRKnXwVz!O^mA;G$|#|po5e_ck|ZvuVALw5zj9G15FrQY=$n?ET)7q>_mn%ghOcz8%$sfhw?qL)dcU6gFZpIrs+u9s7ivOy(U;n zRFxD=K@&+yl3>&`K+-*@#cNPppVkW5WSP9a?^(q-W*b* z=F}Tyu%+!nwQFn%8qGiGWXqj-eYDO+Dm5Ht*m5EL_o(U$W`=0D-8a=Ae=4Sdx z?ZJjyE;==x9#hERQsJX=#4YYk(j)YBgT6sL(>-q0_4l#rn+AQ0z73VVwB%GV!HH-Y z1pTwMr3SB=)aeOS<@k2FsJ%LUPYmVCFua5nk8kJYVekVK-T3zA8pWJ`$P>7H!+XOz zYH1S9_x@OrHA4jcXN0Pm!chGL2|2!9gbt(U#B6vwFj&E^jdBQnX3$r-M6kCgyl#4t zqx3vZs~N9RD>z47K4yBtSl-DI$0BFk`Ks+VYOs|yK4Wio3)%BOo)G(RM#xiT-3!l+ zH;NPJpztu9@*Ho+9N(ePn6XY=X_9m+sT9XZ!>EgN{Na$p*uXfAXAd;JbtwBB>ZbvW za2y48eh%Uf_8}N>BDESe!GL3_)o=?8IDlFWTVTNX(`tAH3^-<54clSBQ6pA>;|0&n z0HIexe+NdqzE|V<8vJD;D|o6qo}-axAav0V{4#{FiZT2e5cXdiH`%OTB|Zx{5qC$|Qt z>klZIVRY}su^ms68oNC95-E?7+I@NK*Q893?^vOG#Sp^T6XW=?ViUiklo@-O1}>2? zVa8VI9U8IOSSmIhGX(oKy)dH~W)Jpw9P34n@L(o8TY z8GsUIG6Fhpr2sl_8D@$>MgW2o0hO#CfJ#=c*~6gT0MujlMnDTzA3zIMzuCv2{s7cx z_D4WvYXG3Kl{N<$lny`xW;z0@T7v*pts!%eK|=v(&>RXuvCHU2-7Tl-HMtF8?@|_N zi7sFdhm~2X;e_qNo$Dyop@Xk-fP6?XI;v!-0ZFB4WgA_D6sIy>rw1Tu@cSn{2uY`h z>5sGwDS->zHF^kAl2+&ny$e!`eojx*yCE6$C;B|S2T~9Hg+58|h181!f05n?sZWWM zL+^*wuiQaL=mU@jlrh>*AB2=vj^T3gAxMMDN!mgmhBQPU!CEV{P1FBHy&5V1rcD~% zkAFJETcnuy|B7KvEg|V+{6*QC^t2ms<?Z0GIR=qORc?LdHQSkP)o)kI0*n+C2o zoK)S9LdVy_fAml8iR~4Iv$cP+gtF25$1agJu|gj|$NFXKgPElrqESb>)ono5=~O!}$`HUxlNf6I&`a9C=Q;4TZf1^)B;`{Vp=`)CNH*TcY=(CVw z`1XIEJ_kv~Mm~J0>dddu72%_#htz0TyDUuswBh4t?TYroXG(eJtC{et-aCUnuSL}~JM L1V=u9q`vfDY+87? diff --git a/exam-api/target/classes/com/yf/exam/modules/user/book/mapper/UserBookMapper.class b/exam-api/target/classes/com/yf/exam/modules/user/book/mapper/UserBookMapper.class deleted file mode 100644 index c9c57ec07c72155f87813b73cd66bb31bedb0af0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 340 zcmb7AJ8r^25PeHX%%?%(9+@KP9HpR01)@MXz}O6E!RxiWyC}X|3J$=b5Q`B=i9|s$ z|C#sn=5YMo19-&w}zS($qyScb{PtB6r9wQS-T~}RTcB^*qFq6)|Lsn3Zo70 zm1VZusec-gNpP=SO>RU$c~6`{t%O{Y;}Ug{NrG@pC{2N$Y#)w{dU+^@M9b diff --git a/exam-api/target/classes/com/yf/exam/modules/user/book/service/UserBookService.class b/exam-api/target/classes/com/yf/exam/modules/user/book/service/UserBookService.class deleted file mode 100644 index 3ecca2f5886ba6ea080e28d1795930e03bb75da9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 877 zcmb7D+fKqj5S`^#z#A(13&M;0pe80YJ{V&{fcS)DM$@W diff --git a/exam-api/target/classes/com/yf/exam/modules/user/book/service/impl/UserBookServiceImpl$1.class b/exam-api/target/classes/com/yf/exam/modules/user/book/service/impl/UserBookServiceImpl$1.class deleted file mode 100644 index 9449eb87277677170c3b6accc32c5d7dba72dd39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 990 zcmbtT&2AGh5dNHB5*8ZDU-?HUhqg$VO57Snr~#x%0jegnXYcMLb-Qba^=?IOyaP|d z0U>eV0eC3Hc!Q9TD3|QY_RM%Z^Nr{8kDuSZ19*l9O;iM)M>ds#+oltU~ffC-5oBm^P2Kw8}F-3rIb^~aob~CWD&j6 z9>B&w+VSK>ohgCVSkH{gi;Ueqm014Yn_lS?Dx2!q7BXFgD%WnF6pne3lX056$?8lS zC+CV6-e=Rkn$hy?`3#D4`-eC$CU1B9{PTUjG*M!mHnU}wP23jfuSSaicX5xYQ39L^ z9Q{p=$YvzfTuYCLk#p_?dha1^onL-=h_7G8Dpzvo3ug4e&=|@FiE@q{9x`vL{G>#u zH_tT9n^4* bl?txoM!DX^2Cp^T!X4aasm%v{O8$NU2Ye*t diff --git a/exam-api/target/classes/com/yf/exam/modules/user/book/service/impl/UserBookServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/user/book/service/impl/UserBookServiceImpl.class deleted file mode 100644 index 93a5a7737b34236f65b34eb13612ef75561b8ad0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9128 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 T5!ZWp;%hXIvvI6jg;@9(pckrb diff --git a/exam-api/target/classes/com/yf/exam/modules/user/exam/dto/UserExamDTO.class b/exam-api/target/classes/com/yf/exam/modules/user/exam/dto/UserExamDTO.class deleted file mode 100644 index a1a70077150571ebeffc03b2700f099086539cde..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5768 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/user/exam/dto/response/UserExamRespDTO.class b/exam-api/target/classes/com/yf/exam/modules/user/exam/dto/response/UserExamRespDTO.class deleted file mode 100644 index 3f33e38f7405bcb4549dd981ba22bb00a9c894a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2486 zcma)7-*XdH6#j0qo22O$N~DDVYLOyMf3P5;lC~(c1zMX@`%A$e<2JcA3(0QWY*5~u z@!1)DV21GzurG|_jFy=?I{Jb${tZ6L$RFUNir>v{nrRy>nPm6ebI(2JJKs6y=C^;> ze**9#-isq5kj=Yg^X3Pp{Mag+Ww%f($*NhaN-xk9eAo13wcLUbn-}XyVAT@o> zx?!0m%ULn!eb07Qh6U1dHOIHha>=gR%O!cvaa`Z>>9;D7nYLZC`jNG=!d$H8j(M(P z=iGuU&3bM{dj3uN(Ql}z0>;BnK7IJjtp}ff_UGzdfrKYNtl6F{L<1~bTcsJRtStXn zUw`n$?G4Kn=`RF8_x5F4K|L5kopf%r0GpaFx#eZ|x_MDL(zAS7AS!K)Fxwz-z(5l1 z0=uVeN6ysB%hFr0n6F~R&67-vlyV&^HNR++fRX8)OY^wWGI~2xnhWz)APyTyDG-V3 zMyg$X+cV89vBo*+7u~|F<&i6&m8LhIYIqZfkyook^(GIOm#@jZKb*OmWVnohejH=C zyyZ+NYo#1CuoqoP9LI?`Oa^N9L~z)^^Ejp~Uoh}2y4YLp=GF;gu;i{^l%7CRk<}YE zS$kdCSasC5nl;}Q>^2o0^S+h8p0g?;@rj~UEvljkMEf$63g=k^!x&+>*}2Kw1o2EV zd$L|D`4k$F+IpK#6TTbtcN`Z4_BAsMwC8JfsUW=sE(vruCMz7szIqy?NlakM!0R}| z5F@r@`)8FZXJ7`Lz?fC3NTy>fSAAkE_(!S3Auqdoi5LhhN`)@Z&9_D9CEwvny)SahTOs z^BKhf=!kI@=PH5(f1Dbw4X!)+?x1E@6}!=S6?-VNowx5k73`{xXRFbwo2Ql6eSGid z&!jB)*89Ih`YweC4)Uo?RG3428i4_x#xqUlCp&*2F3+=?hm=Me>=f8cwh zzooPtQg>hxLQ-%8ZhC30vru({j_&Nf=SkfMt_JwL1g9 zKzs>3dS~Egh}>ZR8v5!>3Ij8Pd}OtuU(ue{?qkm?jG?r)hM|VV$*fM3li65WS2nTx zNUfqHt*2uRBkc}jMYomgQh;HDpCV52FOnA&=5d;3jG&h-{t|Uj-b-ikG9?Wc*?q52 z(vhRbGn8V;(ti)y;)%bpD-Q7wy5l&`Z-V0fKx`BAR_FZ`iP6+W*MgWc46n+nD@GLR z$5mC|K&=z2LLGWPU8kM*507qbn%}8Yf3w-n;Sp`LPVS-3;UcL`bPlW{KD36>_m%!+ zR#O{kE!;^c!nt**HIa%8dJQ2(Nz|)&jgSk*Bb>xfcxL2no|Y_!cPnlT>lqZV0Trb9KSM}NS?mDI(1m{ggsVLCO-hssvT xb9}5};s0jxXqcc-7hQ`$&0FFg-fTTHn{SB-uGC9>b>q5vn{Ihsy@Pl8_z!($*ew76 diff --git a/exam-api/target/classes/com/yf/exam/modules/user/exam/entity/UserExam.class b/exam-api/target/classes/com/yf/exam/modules/user/exam/entity/UserExam.class deleted file mode 100644 index 1f8c3aa347993180d266a0207a6a610d6b4863b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5876 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 diff --git a/exam-api/target/classes/com/yf/exam/modules/user/exam/service/UserExamService.class b/exam-api/target/classes/com/yf/exam/modules/user/exam/service/UserExamService.class deleted file mode 100644 index c9f6e4d4fd0262c12f68dcada805fe23b3b72919..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 896 zcmb7D$xg#C5FHoV(z5Tr02h1!PC=XisS=2)Ws$hK$q-y6c4|9_{u&29fEz!A7^elw zQkKKSA!@8$9N{s91XV7&?@2D_n7dH^mJTw3!EEpT4g`i;z#eoS?hWQBxQ} zAfT}frqccZJO=fymWt}~#4!jqj^9aaJ3|x%KSmnLVT>lY+Pt8NUMG!+9Iqbll�U zpwn8UK)tPV6XKCfD7x}VMO%J0gS(N510e4%sg yMOR@8N>HO)3FDg5)Wc^lPQrpe$d<^K$x5(NJXeQp*IodMQV|;f diff --git a/exam-api/target/classes/com/yf/exam/modules/user/exam/service/impl/UserExamServiceImpl.class b/exam-api/target/classes/com/yf/exam/modules/user/exam/service/impl/UserExamServiceImpl.class deleted file mode 100644 index ecd82999c7242f66066e2286af54c41663bf52a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6031 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 - - - - - - - - - - - - - `id`,`exam_id`,`depart_id` - - - diff --git a/exam-api/target/classes/mapper/exam/ExamMapper.xml b/exam-api/target/classes/mapper/exam/ExamMapper.xml deleted file mode 100644 index 8203a3b..0000000 --- a/exam-api/target/classes/mapper/exam/ExamMapper.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - `id`,`title`,`content`,`open_type`,`join_type`,`level`,`state`,`time_limit`,`start_time`,`end_time`,`create_time`,`update_time`,`total_score`,`total_time`,`qualify_score` - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/exam-api/target/classes/mapper/exam/ExamRepoMapper.xml b/exam-api/target/classes/mapper/exam/ExamRepoMapper.xml deleted file mode 100644 index bc06691..0000000 --- a/exam-api/target/classes/mapper/exam/ExamRepoMapper.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - `id`,`exam_id`,`repo_id`,`radio_count`,`radio_score`,`multi_count`,`multi_score`,`judge_count`,`judge_score` - - - - - - - - - - - diff --git a/exam-api/target/classes/mapper/paper/PaperMapper.xml b/exam-api/target/classes/mapper/paper/PaperMapper.xml deleted file mode 100644 index 8653ab1..0000000 --- a/exam-api/target/classes/mapper/paper/PaperMapper.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - `id`,`user_id`,`depart_id`,`exam_id`,`title`,`total_time`,`user_time`,`total_score`,`qualify_score`,`obj_score`,`subj_score`,`user_score`,`has_saq`,`state`,`create_time`,`update_time`,`limit_time` - - - - - - - - - - diff --git a/exam-api/target/classes/mapper/paper/PaperQuAnswerMapper.xml b/exam-api/target/classes/mapper/paper/PaperQuAnswerMapper.xml deleted file mode 100644 index bd4f89b..0000000 --- a/exam-api/target/classes/mapper/paper/PaperQuAnswerMapper.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - `id`,`paper_id`,`answer_id`,`qu_id`,`is_right`,`checked`,`sort`,`abc` - - - - - - - - - - - - - diff --git a/exam-api/target/classes/mapper/paper/PaperQuMapper.xml b/exam-api/target/classes/mapper/paper/PaperQuMapper.xml deleted file mode 100644 index 0498b71..0000000 --- a/exam-api/target/classes/mapper/paper/PaperQuMapper.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - `id`,`paper_id`,`qu_id`,`qu_type`,`answered`,`answer`,`sort`,`score`,`actual_score`,`is_right` - - - - - - - - - - - - - - - - - - - diff --git a/exam-api/target/classes/mapper/qu/QuAnswerMapper.xml b/exam-api/target/classes/mapper/qu/QuAnswerMapper.xml deleted file mode 100644 index a5cfd35..0000000 --- a/exam-api/target/classes/mapper/qu/QuAnswerMapper.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - `id`,`qu_id`,`is_right`,`image`,`content`,`analysis` - - - diff --git a/exam-api/target/classes/mapper/qu/QuMapper.xml b/exam-api/target/classes/mapper/qu/QuMapper.xml deleted file mode 100644 index 20ed746..0000000 --- a/exam-api/target/classes/mapper/qu/QuMapper.xml +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - - - - `id`,`qu_type`,`level`,`image`,`content`,`create_time`,`update_time`,`remark`,`analysis` - - - - - - - - - - - - - - - - - - - - - - - - - - AND q.qu_type = #{query.quType} - - - AND po.repo_id IN - #{repoId} - - - AND q.content LIKE CONCAT('%',#{query.content},'%') - - - AND q.id NOT IN - - #{quId} - - - - - - - - - - - - diff --git a/exam-api/target/classes/mapper/qu/QuRepoMapper.xml b/exam-api/target/classes/mapper/qu/QuRepoMapper.xml deleted file mode 100644 index 3353d6c..0000000 --- a/exam-api/target/classes/mapper/qu/QuRepoMapper.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - `id`,`qu_id`,`repo_id`,`qu_type`,`sort` - - - - diff --git a/exam-api/target/classes/mapper/repo/RepoMapper.xml b/exam-api/target/classes/mapper/repo/RepoMapper.xml deleted file mode 100644 index d026b31..0000000 --- a/exam-api/target/classes/mapper/repo/RepoMapper.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - `id`,`code`,`title`,`radio_count`,`multi_count`,`judge_count`,`remark`,`create_time`,`update_time` - - - - - - - - - - - - - diff --git a/exam-api/target/classes/mapper/sys/depart/SysDepartMapper.xml b/exam-api/target/classes/mapper/sys/depart/SysDepartMapper.xml deleted file mode 100644 index 2bae742..0000000 --- a/exam-api/target/classes/mapper/sys/depart/SysDepartMapper.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - `id`,`dept_type`,`parent_id`,`dept_name`,`dept_code`,`sort` - - - - - - - - - - - - diff --git a/exam-api/target/classes/mapper/sys/system/SysDictMapper.xml b/exam-api/target/classes/mapper/sys/system/SysDictMapper.xml deleted file mode 100644 index 194ff86..0000000 --- a/exam-api/target/classes/mapper/sys/system/SysDictMapper.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/exam-api/target/classes/mapper/sys/user/SysRoleMapper.xml b/exam-api/target/classes/mapper/sys/user/SysRoleMapper.xml deleted file mode 100644 index f79fbf6..0000000 --- a/exam-api/target/classes/mapper/sys/user/SysRoleMapper.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - `id`,`role_name` - - - diff --git a/exam-api/target/classes/mapper/sys/user/SysUserMapper.xml b/exam-api/target/classes/mapper/sys/user/SysUserMapper.xml deleted file mode 100644 index 7d9c81f..0000000 --- a/exam-api/target/classes/mapper/sys/user/SysUserMapper.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - `id`,`user_name`,`real_name`,`password`,`salt`,`role_ids`,`depart_id`,`create_time`,`update_time`,`state` - - - diff --git a/exam-api/target/classes/mapper/sys/user/SysUserRoleMapper.xml b/exam-api/target/classes/mapper/sys/user/SysUserRoleMapper.xml deleted file mode 100644 index f2ea833..0000000 --- a/exam-api/target/classes/mapper/sys/user/SysUserRoleMapper.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - `id`,`user_id`,`role_id` - - - diff --git a/exam-api/target/classes/mapper/user/UserBookMapper.xml b/exam-api/target/classes/mapper/user/UserBookMapper.xml deleted file mode 100644 index 17d6775..0000000 --- a/exam-api/target/classes/mapper/user/UserBookMapper.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - `id`,`exam_id`,`user_id`,`qu_id`,`create_time`,`update_time`,`wrong_count`,`title`,`sort` - - - diff --git a/exam-api/target/classes/mapper/user/UserExamMapper.xml b/exam-api/target/classes/mapper/user/UserExamMapper.xml deleted file mode 100644 index d123ee7..0000000 --- a/exam-api/target/classes/mapper/user/UserExamMapper.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - `id`,`user_id`,`exam_id`,`try_count`,`max_score`,`passed`,`create_time`,`update_time` - - - - - - - - - - - diff --git a/exam-api/target/classes/static/favicon.png b/exam-api/target/classes/static/favicon.png deleted file mode 100644 index 01f150e856630d3750fd30a28b6313d42e1969d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9194 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 diff --git a/exam-api/target/classes/static/index.html b/exam-api/target/classes/static/index.html deleted file mode 100644 index 3862b9d..0000000 --- a/exam-api/target/classes/static/index.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - 云帆考试培训系统 - - -

- - diff --git a/exam-api/target/classes/static/readMe.txt b/exam-api/target/classes/static/readMe.txt deleted file mode 100644 index a581872..0000000 --- a/exam-api/target/classes/static/readMe.txt +++ /dev/null @@ -1,2 +0,0 @@ -为了方便单文件运行,可以把前端打包文件dist目录的内容复制到本目录下面,这样就可以直接运行jar就包含前端了,不需要单独再部署前端了。 -访问地址为:http://localhost:8101 \ No newline at end of file diff --git a/exam-api/target/classes/static/static/fonts/element-icons.535877f5.woff b/exam-api/target/classes/static/static/fonts/element-icons.535877f5.woff deleted file mode 100644 index 02b9a2539e425a7a8c244faba92527602be76212..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 28200 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
%#5t+7yTm^Z{)9pPFdh-)p? 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⋘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 GY5fOuZZib{ diff --git a/exam-api/target/classes/static/static/img/404.a57b6f31.png b/exam-api/target/classes/static/static/img/404.a57b6f31.png deleted file mode 100644 index 3d8e2305cc973ad2121403aee4bf08728f76c461..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 98071 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 diff --git a/exam-api/target/classes/static/static/img/404_cloud.0f4bc32b.png b/exam-api/target/classes/static/static/img/404_cloud.0f4bc32b.png deleted file mode 100644 index c6281d09013e0a2c5f8e699a0a6038d9480291e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4766 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 diff --git a/exam-api/target/classes/static/static/img/contact.22828125.png b/exam-api/target/classes/static/static/img/contact.22828125.png deleted file mode 100644 index ce3e761e8e3e6718ae60cef30e1ba2c52f9d0f1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 44951 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 F{SR;I(=q@6 diff --git a/exam-api/target/classes/static/static/img/h5.ac62244a.png b/exam-api/target/classes/static/static/img/h5.ac62244a.png deleted file mode 100644 index 41478fd940c265c89092320bb889f3ba7b3816cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25894 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 HKYjUMu$5@r diff --git a/exam-api/target/classes/static/static/img/login-bg.5825f033.svg b/exam-api/target/classes/static/static/img/login-bg.5825f033.svg deleted file mode 100644 index 89c2597..0000000 --- a/exam-api/target/classes/static/static/img/login-bg.5825f033.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - Group 21 - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/exam-api/target/classes/static/static/img/mp.1a3d1b7d.jpg b/exam-api/target/classes/static/static/img/mp.1a3d1b7d.jpg deleted file mode 100644 index db5c422e1208bd2df3fa0c7890554085474bf993..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 91768 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 G#{Uk1qWYi! diff --git a/exam-api/target/classes/static/static/js/0.js b/exam-api/target/classes/static/static/js/0.js deleted file mode 100644 index b1c22bd..0000000 --- a/exam-api/target/classes/static/static/js/0.js +++ /dev/null @@ -1,219 +0,0 @@ -(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],{ - -/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/FileUpload/index.vue?vue&type=script&lang=js&": -/*!*************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FileUpload/index.vue?vue&type=script&lang=js& ***! - \*************************************************************************************************************************************************************************************************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _local__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./local */ \"./src/components/FileUpload/local.vue\");\n//\n//\n//\n//\n//\n//\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'FileUpload',\n components: {\n FileUploadLocal: _local__WEBPACK_IMPORTED_MODULE_0__[\"default\"]\n },\n props: {\n value: String,\n accept: {\n type: String,\n default: '*'\n },\n tips: String,\n listType: {\n type: String,\n default: 'picture'\n }\n },\n data: function data() {\n return {\n fileUrl: ''\n };\n },\n watch: {\n // 检测查询变化\n value: {\n handler: function handler() {\n this.fillValue();\n }\n },\n // 检测查询变化\n fileUrl: {\n handler: function handler() {\n this.$emit('input', this.fileUrl);\n }\n }\n },\n mounted: function mounted() {},\n created: function created() {\n this.fillValue();\n },\n methods: {\n fillValue: function fillValue() {\n this.fileUrl = this.value;\n }\n }\n});\n\n//# sourceURL=webpack:///./src/components/FileUpload/index.vue?./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/FileUpload/local.vue?vue&type=script&lang=js&": -/*!*************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FileUpload/local.vue?vue&type=script&lang=js& ***! - \*************************************************************************************************************************************************************************************************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.number.constructor */ \"./node_modules/core-js/modules/es6.number.constructor.js\");\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _utils_auth__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/utils/auth */ \"./src/utils/auth.js\");\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'FileUploadLocal',\n props: {\n value: String,\n accept: String,\n tips: String,\n listType: String,\n limit: {\n type: Number,\n default: 1\n }\n },\n data: function data() {\n return {\n server: \"\".concat(\"\", \"/common/api/file/upload\"),\n fileList: [],\n fileUrl: '',\n header: {}\n };\n },\n watch: {\n // 检测查询变化\n value: {\n handler: function handler() {\n this.fillValue();\n }\n }\n },\n created: function created() {\n this.fillValue();\n this.header = {\n token: Object(_utils_auth__WEBPACK_IMPORTED_MODULE_1__[\"getToken\"])()\n };\n },\n methods: {\n fillValue: function fillValue() {\n this.fileList = [];\n this.fileUrl = this.value;\n\n if (this.fileUrl) {\n this.fileList = [{\n name: this.fileUrl,\n url: this.fileUrl\n }];\n }\n },\n // 文件超出个数限制时的钩子\n handleExceed: function handleExceed() {\n this.$message.warning(\"\\u6BCF\\u6B21\\u53EA\\u80FD\\u4E0A\\u4F20 \".concat(this.limit, \" \\u4E2A\\u6587\\u4EF6\"));\n },\n // 删除文件之前的钩子\n beforeRemove: function beforeRemove() {\n return this.$confirm(\"\\u786E\\u5B9A\\u79FB\\u9664\\u6587\\u4EF6\\u5417\\uFF1F\");\n },\n // 文件列表移除文件时的钩子\n handleRemove: function handleRemove() {\n this.$emit('input', '');\n this.fileList = [];\n },\n // 文件上传成功时的钩子\n handleSuccess: function handleSuccess(response) {\n if (response.code === 1) {\n this.$message({\n type: 'error',\n message: response.msg\n });\n this.fileList = [];\n return;\n }\n\n this.$emit('input', response.data.url);\n }\n }\n});\n\n//# sourceURL=webpack:///./src/components/FileUpload/local.vue?./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/qu/qu/form.vue?vue&type=script&lang=js&": -/*!**************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/qu/qu/form.vue?vue&type=script&lang=js& ***! - \**************************************************************************************************************************************************************************************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/web.dom.iterable */ \"./node_modules/core-js/modules/web.dom.iterable.js\");\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _api_qu_qu__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/api/qu/qu */ \"./src/api/qu/qu.js\");\n/* harmony import */ var _components_RepoSelect__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/components/RepoSelect */ \"./src/components/RepoSelect/index.vue\");\n/* harmony import */ var _components_FileUpload__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/components/FileUpload */ \"./src/components/FileUpload/index.vue\");\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'QuDetail',\n components: {\n FileUpload: _components_FileUpload__WEBPACK_IMPORTED_MODULE_3__[\"default\"],\n RepoSelect: _components_RepoSelect__WEBPACK_IMPORTED_MODULE_2__[\"default\"]\n },\n data: function data() {\n return {\n quTypeDisabled: false,\n itemImage: true,\n levels: [{\n value: 1,\n label: '普通'\n }, {\n value: 2,\n label: '较难'\n }],\n quTypes: [{\n value: 1,\n label: '单选题'\n }, {\n value: 2,\n label: '多选题'\n }, {\n value: 3,\n label: '判断题'\n }],\n postForm: {\n repoIds: [],\n tagList: [],\n answerList: []\n },\n rules: {\n content: [{\n required: true,\n message: '题目内容不能为空!'\n }],\n quType: [{\n required: true,\n message: '题目类型不能为空!'\n }],\n level: [{\n required: true,\n message: '必须选择难度等级!'\n }],\n repoIds: [{\n required: true,\n message: '至少要选择一个题库!'\n }]\n }\n };\n },\n created: function created() {\n var id = this.$route.params.id;\n\n if (typeof id !== 'undefined') {\n this.quTypeDisabled = true;\n this.fetchData(id);\n }\n },\n methods: {\n handleTypeChange: function handleTypeChange(v) {\n this.postForm.answerList = [];\n\n if (v === 3) {\n this.postForm.answerList.push({\n isRight: true,\n content: '正确',\n analysis: ''\n });\n this.postForm.answerList.push({\n isRight: false,\n content: '错误',\n analysis: ''\n });\n }\n\n if (v === 1 || v === 2) {\n this.postForm.answerList.push({\n isRight: false,\n content: '',\n analysis: ''\n });\n this.postForm.answerList.push({\n isRight: false,\n content: '',\n analysis: ''\n });\n this.postForm.answerList.push({\n isRight: false,\n content: '',\n analysis: ''\n });\n this.postForm.answerList.push({\n isRight: false,\n content: '',\n analysis: ''\n });\n }\n },\n // 添加子项\n handleAdd: function handleAdd() {\n this.postForm.answerList.push({\n isRight: false,\n content: '',\n analysis: ''\n });\n },\n removeItem: function removeItem(index) {\n this.postForm.answerList.splice(index, 1);\n },\n fetchData: function fetchData(id) {\n var _this = this;\n\n Object(_api_qu_qu__WEBPACK_IMPORTED_MODULE_1__[\"fetchDetail\"])(id).then(function (response) {\n _this.postForm = response.data;\n });\n },\n submitForm: function submitForm() {\n var _this2 = this;\n\n console.log(JSON.stringify(this.postForm));\n var rightCount = 0;\n this.postForm.answerList.forEach(function (item) {\n if (item.isRight) {\n rightCount += 1;\n }\n });\n\n if (this.postForm.quType === 1) {\n if (rightCount !== 1) {\n this.$message({\n message: '单选题答案只能有一个',\n type: 'warning'\n });\n return;\n }\n }\n\n if (this.postForm.quType === 2) {\n if (rightCount < 2) {\n this.$message({\n message: '多选题至少要有两个正确答案!',\n type: 'warning'\n });\n return;\n }\n }\n\n if (this.postForm.quType === 3) {\n if (rightCount !== 1) {\n this.$message({\n message: '判断题只能有一个正确项!',\n type: 'warning'\n });\n return;\n }\n }\n\n this.$refs.postForm.validate(function (valid) {\n if (!valid) {\n return;\n }\n\n Object(_api_qu_qu__WEBPACK_IMPORTED_MODULE_1__[\"saveData\"])(_this2.postForm).then(function (response) {\n _this2.postForm = response.data;\n\n _this2.$notify({\n title: '成功',\n message: '试题保存成功!',\n type: 'success',\n duration: 2000\n });\n\n _this2.$router.push({\n name: 'ListQu'\n });\n });\n });\n },\n onCancel: function onCancel() {\n this.$router.push({\n name: 'ListQu'\n });\n }\n }\n});\n\n//# sourceURL=webpack:///./src/views/qu/qu/form.vue?./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/FileUpload/index.vue?vue&type=template&id=211f81e0&": -/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"9323b05c-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FileUpload/index.vue?vue&type=template&id=211f81e0& ***! - \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function () {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n [\n _c(\"file-upload-local\", {\n attrs: {\n accept: _vm.accept,\n tips: _vm.tips,\n \"list-type\": _vm.listType,\n },\n model: {\n value: _vm.fileUrl,\n callback: function ($$v) {\n _vm.fileUrl = $$v\n },\n expression: \"fileUrl\",\n },\n }),\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/components/FileUpload/index.vue?./node_modules/cache-loader/dist/cjs.js?%7B%22cacheDirectory%22:%22node_modules/.cache/vue-loader%22,%22cacheIdentifier%22:%229323b05c-vue-loader-template%22%7D!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/FileUpload/local.vue?vue&type=template&id=5087fdae&": -/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"9323b05c-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FileUpload/local.vue?vue&type=template&id=5087fdae& ***! - \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function () {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"content\" },\n [\n _c(\n \"el-upload\",\n {\n attrs: {\n action: _vm.server,\n accept: _vm.accept,\n \"before-remove\": _vm.beforeRemove,\n \"on-remove\": _vm.handleRemove,\n \"on-success\": _vm.handleSuccess,\n \"on-exceed\": _vm.handleExceed,\n drag: _vm.listType !== \"picture\",\n limit: _vm.limit,\n headers: _vm.header,\n \"file-list\": _vm.fileList,\n \"list-type\": _vm.listType,\n },\n model: {\n value: _vm.fileUrl,\n callback: function ($$v) {\n _vm.fileUrl = $$v\n },\n expression: \"fileUrl\",\n },\n },\n [\n _vm.listType === \"picture\"\n ? _c(\"el-button\", { attrs: { size: \"small\", type: \"primary\" } }, [\n _vm._v(\"点击上传\"),\n ])\n : _vm._e(),\n _vm.listType !== \"picture\"\n ? _c(\"i\", { staticClass: \"el-icon-upload\" })\n : _vm._e(),\n _vm.listType !== \"picture\"\n ? _c(\"div\", { staticClass: \"el-upload__text\" }, [\n _vm._v(\" 将文件拖到此处,或 \"),\n _c(\"em\", [_vm._v(\"点击上传\")]),\n ])\n : _vm._e(),\n _vm.tips\n ? _c(\n \"div\",\n {\n staticClass: \"el-upload__tip\",\n attrs: { slot: \"tip\" },\n slot: \"tip\",\n },\n [_vm._v(_vm._s(_vm.tips))]\n )\n : _vm._e(),\n ],\n 1\n ),\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/components/FileUpload/local.vue?./node_modules/cache-loader/dist/cjs.js?%7B%22cacheDirectory%22:%22node_modules/.cache/vue-loader%22,%22cacheIdentifier%22:%229323b05c-vue-loader-template%22%7D!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/qu/qu/form.vue?vue&type=template&id=4fe7c07e&scoped=true&": -/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"9323b05c-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/qu/qu/form.vue?vue&type=template&id=4fe7c07e&scoped=true& ***! - \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function () {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"app-container\" },\n [\n _c(\n \"el-form\",\n {\n ref: \"postForm\",\n attrs: {\n model: _vm.postForm,\n rules: _vm.rules,\n \"label-position\": \"left\",\n \"label-width\": \"150px\",\n },\n },\n [\n _c(\n \"el-card\",\n [\n _c(\n \"el-form-item\",\n { attrs: { label: \"题目类型 \", prop: \"quType\" } },\n [\n _c(\n \"el-select\",\n {\n staticClass: \"filter-item\",\n attrs: { disabled: _vm.quTypeDisabled },\n on: { change: _vm.handleTypeChange },\n model: {\n value: _vm.postForm.quType,\n callback: function ($$v) {\n _vm.$set(_vm.postForm, \"quType\", $$v)\n },\n expression: \"postForm.quType\",\n },\n },\n _vm._l(_vm.quTypes, function (item) {\n return _c(\"el-option\", {\n key: item.value,\n attrs: { label: item.label, value: item.value },\n })\n }),\n 1\n ),\n ],\n 1\n ),\n _c(\n \"el-form-item\",\n { attrs: { label: \"难度等级 \", prop: \"level\" } },\n [\n _c(\n \"el-select\",\n {\n staticClass: \"filter-item\",\n model: {\n value: _vm.postForm.level,\n callback: function ($$v) {\n _vm.$set(_vm.postForm, \"level\", $$v)\n },\n expression: \"postForm.level\",\n },\n },\n _vm._l(_vm.levels, function (item) {\n return _c(\"el-option\", {\n key: item.value,\n attrs: { label: item.label, value: item.value },\n })\n }),\n 1\n ),\n ],\n 1\n ),\n _c(\n \"el-form-item\",\n { attrs: { label: \"归属题库\", prop: \"repoIds\" } },\n [\n _c(\"repo-select\", {\n attrs: { multi: true },\n model: {\n value: _vm.postForm.repoIds,\n callback: function ($$v) {\n _vm.$set(_vm.postForm, \"repoIds\", $$v)\n },\n expression: \"postForm.repoIds\",\n },\n }),\n ],\n 1\n ),\n _c(\n \"el-form-item\",\n { attrs: { label: \"题目内容\", prop: \"content\" } },\n [\n _c(\"el-input\", {\n attrs: { type: \"textarea\" },\n model: {\n value: _vm.postForm.content,\n callback: function ($$v) {\n _vm.$set(_vm.postForm, \"content\", $$v)\n },\n expression: \"postForm.content\",\n },\n }),\n ],\n 1\n ),\n _c(\n \"el-form-item\",\n { attrs: { label: \"试题图片\" } },\n [\n _c(\"file-upload\", {\n attrs: { accept: \".jpg,.jepg,.png\" },\n model: {\n value: _vm.postForm.image,\n callback: function ($$v) {\n _vm.$set(_vm.postForm, \"image\", $$v)\n },\n expression: \"postForm.image\",\n },\n }),\n ],\n 1\n ),\n _c(\n \"el-form-item\",\n { attrs: { label: \"整题解析\", prop: \"oriPrice\" } },\n [\n _c(\"el-input\", {\n attrs: { precision: 1, max: 999999, type: \"textarea\" },\n model: {\n value: _vm.postForm.analysis,\n callback: function ($$v) {\n _vm.$set(_vm.postForm, \"analysis\", $$v)\n },\n expression: \"postForm.analysis\",\n },\n }),\n ],\n 1\n ),\n ],\n 1\n ),\n _vm.postForm.quType !== 4\n ? _c(\n \"div\",\n {\n staticClass: \"filter-container\",\n staticStyle: { \"margin-top\": \"25px\" },\n },\n [\n _c(\n \"el-button\",\n {\n staticClass: \"filter-item\",\n attrs: {\n type: \"primary\",\n icon: \"el-icon-plus\",\n size: \"small\",\n plain: \"\",\n },\n on: { click: _vm.handleAdd },\n },\n [_vm._v(\" 添加 \")]\n ),\n _c(\n \"el-table\",\n {\n staticStyle: { width: \"100%\" },\n attrs: { data: _vm.postForm.answerList, border: true },\n },\n [\n _c(\"el-table-column\", {\n attrs: {\n label: \"是否答案\",\n width: \"120\",\n align: \"center\",\n },\n scopedSlots: _vm._u(\n [\n {\n key: \"default\",\n fn: function (scope) {\n return [\n _c(\n \"el-checkbox\",\n {\n model: {\n value: scope.row.isRight,\n callback: function ($$v) {\n _vm.$set(scope.row, \"isRight\", $$v)\n },\n expression: \"scope.row.isRight\",\n },\n },\n [_vm._v(\"答案\")]\n ),\n ]\n },\n },\n ],\n null,\n false,\n 1650073960\n ),\n }),\n _vm.itemImage\n ? _c(\"el-table-column\", {\n attrs: {\n label: \"选项图片\",\n width: \"120px\",\n align: \"center\",\n },\n scopedSlots: _vm._u(\n [\n {\n key: \"default\",\n fn: function (scope) {\n return [\n _c(\"file-upload\", {\n attrs: { accept: \".jpg,.jepg,.png\" },\n model: {\n value: scope.row.image,\n callback: function ($$v) {\n _vm.$set(scope.row, \"image\", $$v)\n },\n expression: \"scope.row.image\",\n },\n }),\n ]\n },\n },\n ],\n null,\n false,\n 2051426284\n ),\n })\n : _vm._e(),\n _c(\"el-table-column\", {\n attrs: { label: \"答案内容\" },\n scopedSlots: _vm._u(\n [\n {\n key: \"default\",\n fn: function (scope) {\n return [\n _c(\"el-input\", {\n attrs: { type: \"textarea\" },\n model: {\n value: scope.row.content,\n callback: function ($$v) {\n _vm.$set(scope.row, \"content\", $$v)\n },\n expression: \"scope.row.content\",\n },\n }),\n ]\n },\n },\n ],\n null,\n false,\n 924406712\n ),\n }),\n _c(\"el-table-column\", {\n attrs: { label: \"答案解析\" },\n scopedSlots: _vm._u(\n [\n {\n key: \"default\",\n fn: function (scope) {\n return [\n _c(\"el-input\", {\n attrs: { type: \"textarea\" },\n model: {\n value: scope.row.analysis,\n callback: function ($$v) {\n _vm.$set(scope.row, \"analysis\", $$v)\n },\n expression: \"scope.row.analysis\",\n },\n }),\n ]\n },\n },\n ],\n null,\n false,\n 3792987939\n ),\n }),\n _c(\"el-table-column\", {\n attrs: {\n label: \"操作\",\n align: \"center\",\n width: \"100px\",\n },\n scopedSlots: _vm._u(\n [\n {\n key: \"default\",\n fn: function (scope) {\n return [\n _c(\"el-button\", {\n attrs: {\n type: \"danger\",\n icon: \"el-icon-delete\",\n circle: \"\",\n },\n on: {\n click: function ($event) {\n return _vm.removeItem(scope.$index)\n },\n },\n }),\n ]\n },\n },\n ],\n null,\n false,\n 1518468532\n ),\n }),\n ],\n 1\n ),\n ],\n 1\n )\n : _vm._e(),\n _c(\n \"div\",\n { staticStyle: { \"margin-top\": \"20px\" } },\n [\n _c(\n \"el-button\",\n { attrs: { type: \"primary\" }, on: { click: _vm.submitForm } },\n [_vm._v(\"保存\")]\n ),\n _c(\n \"el-button\",\n { attrs: { type: \"info\" }, on: { click: _vm.onCancel } },\n [_vm._v(\"返回\")]\n ),\n ],\n 1\n ),\n ],\n 1\n ),\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/views/qu/qu/form.vue?./node_modules/cache-loader/dist/cjs.js?%7B%22cacheDirectory%22:%22node_modules/.cache/vue-loader%22,%22cacheIdentifier%22:%229323b05c-vue-loader-template%22%7D!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/core-js/modules/es6.array.find.js": -/*!********************************************************!*\ - !*** ./node_modules/core-js/modules/es6.array.find.js ***! - \********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; -eval("\n// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)\nvar $export = __webpack_require__(/*! ./_export */ \"./node_modules/core-js/modules/_export.js\");\nvar $find = __webpack_require__(/*! ./_array-methods */ \"./node_modules/core-js/modules/_array-methods.js\")(5);\nvar KEY = 'find';\nvar forced = true;\n// Shouldn't skip holes\nif (KEY in []) Array(1)[KEY](function () { forced = false; });\n$export($export.P + $export.F * forced, 'Array', {\n find: function find(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n__webpack_require__(/*! ./_add-to-unscopables */ \"./node_modules/core-js/modules/_add-to-unscopables.js\")(KEY);\n\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es6.array.find.js?"); - -/***/ }), - -/***/ "./src/api/qu/qu.js": -/*!**************************!*\ - !*** ./src/api/qu/qu.js ***! - \**************************/ -/*! exports provided: fetchDetail, saveData, exportExcel, importTemplate, importExcel */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fetchDetail\", function() { return fetchDetail; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"saveData\", function() { return saveData; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"exportExcel\", function() { return exportExcel; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"importTemplate\", function() { return importTemplate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"importExcel\", function() { return importExcel; });\n/* harmony import */ var _utils_request__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/utils/request */ \"./src/utils/request.js\");\n\n/**\n * 题库详情\n * @param data\n */\n\nfunction fetchDetail(id) {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"post\"])('/exam/api/qu/qu/detail', {\n id: id\n });\n}\n/**\n * 保存题库\n * @param data\n */\n\nfunction saveData(data) {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"post\"])('/exam/api/qu/qu/save', data);\n}\n/**\n * 导出\n * @param data\n */\n\nfunction exportExcel(data) {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"download\"])('/exam/api/qu/qu/export', data, '导出的数据.xlsx');\n}\n/**\n * 导入模板\n * @param data\n */\n\nfunction importTemplate() {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"download\"])('/exam/api/qu/qu/import/template', {}, 'qu-import-template.xlsx');\n}\n/**\n * 导出\n * @param data\n */\n\nfunction importExcel(file) {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"upload\"])('/exam/api/qu/qu/import', file);\n}\n\n//# sourceURL=webpack:///./src/api/qu/qu.js?"); - -/***/ }), - -/***/ "./src/api/qu/repo.js": -/*!****************************!*\ - !*** ./src/api/qu/repo.js ***! - \****************************/ -/*! exports provided: fetchDetail, saveData, fetchPaging, batchAction */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fetchDetail\", function() { return fetchDetail; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"saveData\", function() { return saveData; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fetchPaging\", function() { return fetchPaging; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"batchAction\", function() { return batchAction; });\n/* harmony import */ var _utils_request__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/utils/request */ \"./src/utils/request.js\");\n\n/**\n * 题库详情\n * @param data\n */\n\nfunction fetchDetail(data) {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"post\"])('/exam/api/repo/detail', data);\n}\n/**\n * 保存题库\n * @param data\n */\n\nfunction saveData(data) {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"post\"])('/exam/api/repo/save', data);\n}\n/**\n * 保存题库\n * @param data\n */\n\nfunction fetchPaging(data) {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"post\"])('/exam/api/repo/paging', data);\n}\n/**\n * 题库批量操作\n * @param data\n */\n\nfunction batchAction(data) {\n return Object(_utils_request__WEBPACK_IMPORTED_MODULE_0__[\"post\"])('/exam/api/repo/batch-action', data);\n}\n\n//# sourceURL=webpack:///./src/api/qu/repo.js?"); - -/***/ }), - -/***/ "./src/components/FileUpload/index.vue": -/*!*********************************************!*\ - !*** ./src/components/FileUpload/index.vue ***! - \*********************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _index_vue_vue_type_template_id_211f81e0___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.vue?vue&type=template&id=211f81e0& */ \"./src/components/FileUpload/index.vue?vue&type=template&id=211f81e0&\");\n/* harmony import */ var _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./index.vue?vue&type=script&lang=js& */ \"./src/components/FileUpload/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _index_vue_vue_type_template_id_211f81e0___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _index_vue_vue_type_template_id_211f81e0___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/components/FileUpload/index.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/components/FileUpload/index.vue?"); - -/***/ }), - -/***/ "./src/components/FileUpload/index.vue?vue&type=script&lang=js&": -/*!**********************************************************************!*\ - !*** ./src/components/FileUpload/index.vue?vue&type=script&lang=js& ***! - \**********************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../node_modules/babel-loader/lib!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/FileUpload/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/components/FileUpload/index.vue?"); - -/***/ }), - -/***/ "./src/components/FileUpload/index.vue?vue&type=template&id=211f81e0&": -/*!****************************************************************************!*\ - !*** ./src/components/FileUpload/index.vue?vue&type=template&id=211f81e0& ***! - \****************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_211f81e0___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=template&id=211f81e0& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/FileUpload/index.vue?vue&type=template&id=211f81e0&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_211f81e0___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_211f81e0___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/components/FileUpload/index.vue?"); - -/***/ }), - -/***/ "./src/components/FileUpload/local.vue": -/*!*********************************************!*\ - !*** ./src/components/FileUpload/local.vue ***! - \*********************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _local_vue_vue_type_template_id_5087fdae___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./local.vue?vue&type=template&id=5087fdae& */ \"./src/components/FileUpload/local.vue?vue&type=template&id=5087fdae&\");\n/* harmony import */ var _local_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./local.vue?vue&type=script&lang=js& */ \"./src/components/FileUpload/local.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _local_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _local_vue_vue_type_template_id_5087fdae___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _local_vue_vue_type_template_id_5087fdae___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/components/FileUpload/local.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/components/FileUpload/local.vue?"); - -/***/ }), - -/***/ "./src/components/FileUpload/local.vue?vue&type=script&lang=js&": -/*!**********************************************************************!*\ - !*** ./src/components/FileUpload/local.vue?vue&type=script&lang=js& ***! - \**********************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_local_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../node_modules/babel-loader/lib!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./local.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/FileUpload/local.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_local_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/components/FileUpload/local.vue?"); - -/***/ }), - -/***/ "./src/components/FileUpload/local.vue?vue&type=template&id=5087fdae&": -/*!****************************************************************************!*\ - !*** ./src/components/FileUpload/local.vue?vue&type=template&id=5087fdae& ***! - \****************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_local_vue_vue_type_template_id_5087fdae___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./local.vue?vue&type=template&id=5087fdae& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/FileUpload/local.vue?vue&type=template&id=5087fdae&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_local_vue_vue_type_template_id_5087fdae___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_local_vue_vue_type_template_id_5087fdae___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/components/FileUpload/local.vue?"); - -/***/ }), - -/***/ "./src/views/qu/qu/form.vue": -/*!**********************************!*\ - !*** ./src/views/qu/qu/form.vue ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _form_vue_vue_type_template_id_4fe7c07e_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./form.vue?vue&type=template&id=4fe7c07e&scoped=true& */ \"./src/views/qu/qu/form.vue?vue&type=template&id=4fe7c07e&scoped=true&\");\n/* harmony import */ var _form_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./form.vue?vue&type=script&lang=js& */ \"./src/views/qu/qu/form.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _form_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _form_vue_vue_type_template_id_4fe7c07e_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _form_vue_vue_type_template_id_4fe7c07e_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"4fe7c07e\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/views/qu/qu/form.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/views/qu/qu/form.vue?"); - -/***/ }), - -/***/ "./src/views/qu/qu/form.vue?vue&type=script&lang=js&": -/*!***********************************************************!*\ - !*** ./src/views/qu/qu/form.vue?vue&type=script&lang=js& ***! - \***********************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./form.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/qu/qu/form.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/views/qu/qu/form.vue?"); - -/***/ }), - -/***/ "./src/views/qu/qu/form.vue?vue&type=template&id=4fe7c07e&scoped=true&": -/*!*****************************************************************************!*\ - !*** ./src/views/qu/qu/form.vue?vue&type=template&id=4fe7c07e&scoped=true& ***! - \*****************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_template_id_4fe7c07e_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./form.vue?vue&type=template&id=4fe7c07e&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/qu/qu/form.vue?vue&type=template&id=4fe7c07e&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_template_id_4fe7c07e_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_form_vue_vue_type_template_id_4fe7c07e_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/views/qu/qu/form.vue?"); - -/***/ }) - -}]); \ No newline at end of file diff --git a/exam-api/target/classes/static/static/js/1.js b/exam-api/target/classes/static/static/js/1.js deleted file mode 100644 index 46609e8..0000000 --- a/exam-api/target/classes/static/static/js/1.js +++ /dev/null @@ -1,133 +0,0 @@ -(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[1],{ - -/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/DepartTreeSelect/index.vue?vue&type=script&lang=js&": -/*!*******************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/DepartTreeSelect/index.vue?vue&type=script&lang=js& ***! - \*******************************************************************************************************************************************************************************************************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'DepartTree',\n // 设置绑定参数\n model: {\n prop: 'value',\n event: 'selected'\n },\n props: {\n // 接收绑定参数\n value: String,\n // 输入框宽度\n width: String,\n // 选项数据\n options: {\n type: Array,\n required: true\n },\n // 输入框占位符\n placeholder: {\n type: String,\n required: false,\n default: '请选择'\n },\n // 树节点配置选项\n props: {\n type: Object,\n required: false,\n default: function _default() {\n return {\n parent: 'parentId',\n value: 'rowGuid',\n label: 'areaName',\n children: 'children'\n };\n }\n }\n },\n data: function data() {\n return {\n // 树状菜单显示状态\n showStatus: false,\n // 菜单宽度\n treeWidth: 'auto',\n // 输入框显示值\n labelModel: '',\n // 实际请求传值\n valueModel: '0'\n };\n },\n computed: {\n // 是否为树状结构数据\n dataType: function dataType() {\n var jsonStr = JSON.stringify(this.options);\n return jsonStr.indexOf(this.props.children) !== -1;\n },\n // 若非树状结构,则转化为树状结构数据\n data: function data() {\n return this.dataType ? this.options : this.switchTree();\n }\n },\n watch: {\n labelModel: function labelModel(val) {\n if (!val) {\n this.valueModel = '';\n }\n\n this.$refs.tree.filter(val);\n },\n value: function value(val) {\n this.labelModel = this.queryTree(this.data, val);\n }\n },\n created: function created() {\n var _this = this;\n\n // 检测输入框原有值并显示对应 label\n if (this.value) {\n this.labelModel = this.queryTree(this.data, this.value);\n } // 获取输入框宽度同步至树状菜单宽度\n\n\n this.$nextTick(function () {\n _this.treeWidth = \"\".concat((_this.width || _this.$refs.input.$refs.input.clientWidth) - 24, \"px\");\n });\n },\n methods: {\n // 单击节点\n onClickNode: function onClickNode(node) {\n this.labelModel = node[this.props.label];\n this.valueModel = node[this.props.value];\n this.onCloseTree();\n },\n // 偏平数组转化为树状层级结构\n switchTree: function switchTree() {\n return this.cleanChildren(this.buildTree(this.options, '0'));\n },\n // 隐藏树状菜单\n onCloseTree: function onCloseTree() {\n this.$refs.popover.showPopper = false;\n },\n // 显示时触发\n onShowPopover: function onShowPopover() {\n this.showStatus = true;\n this.$refs.tree.filter(false);\n },\n // 隐藏时触发\n onHidePopover: function onHidePopover() {\n this.showStatus = false;\n this.$emit('selected', this.valueModel);\n },\n // 树节点过滤方法\n filterNode: function filterNode(query, data) {\n if (!query) return true;\n return data[this.props.label].indexOf(query) !== -1;\n },\n // 搜索树状数据中的 ID\n queryTree: function queryTree(tree, id) {\n var stark = [];\n stark = stark.concat(tree);\n\n while (stark.length) {\n var temp = stark.shift();\n\n if (temp[this.props.children]) {\n stark = stark.concat(temp[this.props.children]);\n }\n\n if (temp[this.props.value] === id) {\n return temp[this.props.label];\n }\n }\n\n return '';\n },\n // 将一维的扁平数组转换为多层级对象\n buildTree: function buildTree(data) {\n var _this2 = this;\n\n var id = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '0';\n\n var fa = function fa(parentId) {\n var temp = [];\n\n for (var i = 0; i < data.length; i++) {\n var n = data[i];\n\n if (n[_this2.props.parent] === parentId) {\n n.children = fa(n.rowGuid);\n temp.push(n);\n }\n }\n\n return temp;\n };\n\n return fa(id);\n },\n // 清除空 children项\n cleanChildren: function cleanChildren(data) {\n var fa = function fa(list) {\n list.map(function (e) {\n if (e.children.length) {\n fa(e.children);\n } else {\n delete e.children;\n }\n\n return e;\n });\n return list;\n };\n\n return fa(data);\n }\n }\n});\n\n//# sourceURL=webpack:///./src/components/DepartTreeSelect/index.vue?./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/DepartTreeSelect/index.vue?vue&type=template&id=1392eafe&": -/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"9323b05c-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/DepartTreeSelect/index.vue?vue&type=template&id=1392eafe& ***! - \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function () {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"el-popover\",\n {\n ref: \"popover\",\n attrs: { placement: \"bottom-start\", trigger: \"click\" },\n on: { show: _vm.onShowPopover, hide: _vm.onHidePopover },\n },\n [\n _c(\"el-tree\", {\n ref: \"tree\",\n staticClass: \"select-tree\",\n style: \"min-width: \" + _vm.treeWidth,\n attrs: {\n data: _vm.data,\n props: _vm.props,\n \"expand-on-click-node\": false,\n \"filter-node-method\": _vm.filterNode,\n placeholder: \"选择部门\",\n \"check-strictly\": false,\n \"highlight-current\": \"\",\n \"default-expand-all\": \"\",\n },\n on: { \"node-click\": _vm.onClickNode },\n }),\n _c(\"el-input\", {\n ref: \"input\",\n class: { rotate: _vm.showStatus },\n style: \"width: \" + _vm.width + \"px\",\n attrs: {\n slot: \"reference\",\n placeholder: _vm.placeholder,\n clearable: \"\",\n \"suffix-icon\": \"el-icon-arrow-down\",\n },\n slot: \"reference\",\n model: {\n value: _vm.labelModel,\n callback: function ($$v) {\n _vm.labelModel = $$v\n },\n expression: \"labelModel\",\n },\n }),\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n\n\n//# sourceURL=webpack:///./src/components/DepartTreeSelect/index.vue?./node_modules/cache-loader/dist/cjs.js?%7B%22cacheDirectory%22:%22node_modules/.cache/vue-loader%22,%22cacheIdentifier%22:%229323b05c-vue-loader-template%22%7D!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/DepartTreeSelect/index.vue?vue&type=style&index=0&lang=css&": -/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/css-loader/dist/cjs.js??ref--7-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--7-oneOf-1-2!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/DepartTreeSelect/index.vue?vue&type=style&index=0&lang=css& ***! - \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../node_modules/css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \"\\n.el-input.el-input--suffix {\\n cursor: pointer;\\n overflow: hidden;\\n}\\n.el-input.el-input--suffix.rotate .el-input__suffix {\\n -webkit-transform: rotate(180deg);\\n transform: rotate(180deg);\\n}\\n.select-tree {\\n max-height: 350px;\\n overflow-y: scroll;\\n}\\n/* 菜单滚动条 */\\n.select-tree::-webkit-scrollbar {\\n z-index: 11;\\n width: 6px;\\n}\\n.select-tree::-webkit-scrollbar-track,\\n.select-tree::-webkit-scrollbar-corner {\\n background: #fff;\\n}\\n.select-tree::-webkit-scrollbar-thumb {\\n border-radius: 5px;\\n width: 6px;\\n background: #b4bccc;\\n}\\n.select-tree::-webkit-scrollbar-track-piece {\\n background: #fff;\\n width: 6px;\\n}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n\n\n//# sourceURL=webpack:///./src/components/DepartTreeSelect/index.vue?./node_modules/css-loader/dist/cjs.js??ref--7-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--7-oneOf-1-2!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options"); - -/***/ }), - -/***/ "./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/components/DepartTreeSelect/index.vue?vue&type=style&index=0&lang=css&": -/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ - !*** ./node_modules/vue-style-loader??ref--7-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--7-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--7-oneOf-1-2!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/DepartTreeSelect/index.vue?vue&type=style&index=0&lang=css& ***! - \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -eval("// style-loader: Adds some css to the DOM by adding a \"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/admin.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/agreement.svg": -/*!*************************************!*\ - !*** ./src/icons/svg/agreement.svg ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-agreement\",\n \"use\": \"icon-agreement-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/agreement.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/bug.svg": -/*!*******************************!*\ - !*** ./src/icons/svg/bug.svg ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-bug\",\n \"use\": \"icon-bug-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/bug.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/chart.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/chart.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-chart\",\n \"use\": \"icon-chart-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/chart.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/clipboard.svg": -/*!*************************************!*\ - !*** ./src/icons/svg/clipboard.svg ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-clipboard\",\n \"use\": \"icon-clipboard-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/clipboard.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/component.svg": -/*!*************************************!*\ - !*** ./src/icons/svg/component.svg ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-component\",\n \"use\": \"icon-component-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/component.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/configure.svg": -/*!*************************************!*\ - !*** ./src/icons/svg/configure.svg ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-configure\",\n \"use\": \"icon-configure-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/configure.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/dashboard.svg": -/*!*************************************!*\ - !*** ./src/icons/svg/dashboard.svg ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-dashboard\",\n \"use\": \"icon-dashboard-usage\",\n \"viewBox\": \"0 0 128 100\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/dashboard.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/documentation.svg": -/*!*****************************************!*\ - !*** ./src/icons/svg/documentation.svg ***! - \*****************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-documentation\",\n \"use\": \"icon-documentation-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/documentation.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/drag.svg": -/*!********************************!*\ - !*** ./src/icons/svg/drag.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-drag\",\n \"use\": \"icon-drag-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/drag.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/edit.svg": -/*!********************************!*\ - !*** ./src/icons/svg/edit.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-edit\",\n \"use\": \"icon-edit-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/edit.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/education.svg": -/*!*************************************!*\ - !*** ./src/icons/svg/education.svg ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-education\",\n \"use\": \"icon-education-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/education.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/email.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/email.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-email\",\n \"use\": \"icon-email-usage\",\n \"viewBox\": \"0 0 128 96\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/email.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/example.svg": -/*!***********************************!*\ - !*** ./src/icons/svg/example.svg ***! - \***********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-example\",\n \"use\": \"icon-example-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/example.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/excel.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/excel.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-excel\",\n \"use\": \"icon-excel-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/excel.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/exit-fullscreen.svg": -/*!*******************************************!*\ - !*** ./src/icons/svg/exit-fullscreen.svg ***! - \*******************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-exit-fullscreen\",\n \"use\": \"icon-exit-fullscreen-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/exit-fullscreen.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/eye-open.svg": -/*!************************************!*\ - !*** ./src/icons/svg/eye-open.svg ***! - \************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-eye-open\",\n \"use\": \"icon-eye-open-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/eye-open.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/eye.svg": -/*!*******************************!*\ - !*** ./src/icons/svg/eye.svg ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-eye\",\n \"use\": \"icon-eye-usage\",\n \"viewBox\": \"0 0 128 64\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/eye.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/fire.svg": -/*!********************************!*\ - !*** ./src/icons/svg/fire.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-fire\",\n \"use\": \"icon-fire-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\\n \\n \\n\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/fire.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/form.svg": -/*!********************************!*\ - !*** ./src/icons/svg/form.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-form\",\n \"use\": \"icon-form-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/form.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/fullscreen.svg": -/*!**************************************!*\ - !*** ./src/icons/svg/fullscreen.svg ***! - \**************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-fullscreen\",\n \"use\": \"icon-fullscreen-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/fullscreen.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/guide.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/guide.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-guide\",\n \"use\": \"icon-guide-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/guide.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/hot.svg": -/*!*******************************!*\ - !*** ./src/icons/svg/hot.svg ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-hot\",\n \"use\": \"icon-hot-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/hot.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/icon.svg": -/*!********************************!*\ - !*** ./src/icons/svg/icon.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-icon\",\n \"use\": \"icon-icon-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/icon.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/international.svg": -/*!*****************************************!*\ - !*** ./src/icons/svg/international.svg ***! - \*****************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-international\",\n \"use\": \"icon-international-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/international.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/language.svg": -/*!************************************!*\ - !*** ./src/icons/svg/language.svg ***! - \************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-language\",\n \"use\": \"icon-language-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/language.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/link.svg": -/*!********************************!*\ - !*** ./src/icons/svg/link.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-link\",\n \"use\": \"icon-link-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/link.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/list.svg": -/*!********************************!*\ - !*** ./src/icons/svg/list.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-list\",\n \"use\": \"icon-list-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/list.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/lock.svg": -/*!********************************!*\ - !*** ./src/icons/svg/lock.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-lock\",\n \"use\": \"icon-lock-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/lock.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/log.svg": -/*!*******************************!*\ - !*** ./src/icons/svg/log.svg ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-log\",\n \"use\": \"icon-log-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/log.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/map.svg": -/*!*******************************!*\ - !*** ./src/icons/svg/map.svg ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-map\",\n \"use\": \"icon-map-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/map.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/message.svg": -/*!***********************************!*\ - !*** ./src/icons/svg/message.svg ***! - \***********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-message\",\n \"use\": \"icon-message-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/message.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/money.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/money.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-money\",\n \"use\": \"icon-money-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/money.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/nested.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/nested.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-nested\",\n \"use\": \"icon-nested-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/nested.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/notify.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/notify.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-notify\",\n \"use\": \"icon-notify-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\\n \\n \\n\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/notify.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/paper.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/paper.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-paper\",\n \"use\": \"icon-paper-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\\n \\n \\n \\n \\n \\n\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/paper.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/password.svg": -/*!************************************!*\ - !*** ./src/icons/svg/password.svg ***! - \************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-password\",\n \"use\": \"icon-password-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/password.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/pdf.svg": -/*!*******************************!*\ - !*** ./src/icons/svg/pdf.svg ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-pdf\",\n \"use\": \"icon-pdf-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/pdf.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/people.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/people.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-people\",\n \"use\": \"icon-people-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/people.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/peoples.svg": -/*!***********************************!*\ - !*** ./src/icons/svg/peoples.svg ***! - \***********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-peoples\",\n \"use\": \"icon-peoples-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/peoples.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/qq.svg": -/*!******************************!*\ - !*** ./src/icons/svg/qq.svg ***! - \******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-qq\",\n \"use\": \"icon-qq-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/qq.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/repo.svg": -/*!********************************!*\ - !*** ./src/icons/svg/repo.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-repo\",\n \"use\": \"icon-repo-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\\n \\n \\n\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/repo.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/results.svg": -/*!***********************************!*\ - !*** ./src/icons/svg/results.svg ***! - \***********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-results\",\n \"use\": \"icon-results-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/results.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/review.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/review.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-review\",\n \"use\": \"icon-review-usage\",\n \"viewBox\": \"0 0 1047 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/review.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/role.svg": -/*!********************************!*\ - !*** ./src/icons/svg/role.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-role\",\n \"use\": \"icon-role-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/role.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/search.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/search.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-search\",\n \"use\": \"icon-search-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/search.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/settings .svg": -/*!*************************************!*\ - !*** ./src/icons/svg/settings .svg ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-settings \",\n \"use\": \"icon-settings -usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/settings_.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/shopping.svg": -/*!************************************!*\ - !*** ./src/icons/svg/shopping.svg ***! - \************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-shopping\",\n \"use\": \"icon-shopping-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/shopping.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/size.svg": -/*!********************************!*\ - !*** ./src/icons/svg/size.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-size\",\n \"use\": \"icon-size-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/size.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/skill.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/skill.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-skill\",\n \"use\": \"icon-skill-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/skill.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/star.svg": -/*!********************************!*\ - !*** ./src/icons/svg/star.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-star\",\n \"use\": \"icon-star-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/star.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/statis.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/statis.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-statis\",\n \"use\": \"icon-statis-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/statis.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/stats-dots.svg": -/*!**************************************!*\ - !*** ./src/icons/svg/stats-dots.svg ***! - \**************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-stats-dots\",\n \"use\": \"icon-stats-dots-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/stats-dots.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/stats2.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/stats2.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-stats2\",\n \"use\": \"icon-stats2-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/stats2.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/study.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/study.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-study\",\n \"use\": \"icon-study-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\\n \\n \\n\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/study.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/study1.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/study1.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-study1\",\n \"use\": \"icon-study1-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\\n \\n \\n\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/study1.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/support.svg": -/*!***********************************!*\ - !*** ./src/icons/svg/support.svg ***! - \***********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-support\",\n \"use\": \"icon-support-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/support.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/tab.svg": -/*!*******************************!*\ - !*** ./src/icons/svg/tab.svg ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-tab\",\n \"use\": \"icon-tab-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/tab.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/table.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/table.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-table\",\n \"use\": \"icon-table-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/table.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/test.svg": -/*!********************************!*\ - !*** ./src/icons/svg/test.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-test\",\n \"use\": \"icon-test-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/test.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/theme.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/theme.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-theme\",\n \"use\": \"icon-theme-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/theme.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/topic.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/topic.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-topic\",\n \"use\": \"icon-topic-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/topic.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/training.svg": -/*!************************************!*\ - !*** ./src/icons/svg/training.svg ***! - \************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-training\",\n \"use\": \"icon-training-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\\n \\n \\n\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/training.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/tree-table.svg": -/*!**************************************!*\ - !*** ./src/icons/svg/tree-table.svg ***! - \**************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-tree-table\",\n \"use\": \"icon-tree-table-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/tree-table.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/tree.svg": -/*!********************************!*\ - !*** ./src/icons/svg/tree.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-tree\",\n \"use\": \"icon-tree-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/tree.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/user.svg": -/*!********************************!*\ - !*** ./src/icons/svg/user.svg ***! - \********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-user\",\n \"use\": \"icon-user-usage\",\n \"viewBox\": \"0 0 130 130\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/user.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/water.svg": -/*!*********************************!*\ - !*** ./src/icons/svg/water.svg ***! - \*********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-water\",\n \"use\": \"icon-water-usage\",\n \"viewBox\": \"0 0 1024 1024\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/water.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/wechat.svg": -/*!**********************************!*\ - !*** ./src/icons/svg/wechat.svg ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-wechat\",\n \"use\": \"icon-wechat-usage\",\n \"viewBox\": \"0 0 128 110\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/wechat.svg?"); - -/***/ }), - -/***/ "./src/icons/svg/zip.svg": -/*!*******************************!*\ - !*** ./src/icons/svg/zip.svg ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! svg-baker-runtime/browser-symbol */ \"./node_modules/svg-baker-runtime/browser-symbol.js\");\n/* harmony import */ var svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! svg-sprite-loader/runtime/browser-sprite.build */ \"./node_modules/svg-sprite-loader/runtime/browser-sprite.build.js\");\n/* harmony import */ var svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1__);\n\n\nvar symbol = new svg_baker_runtime_browser_symbol__WEBPACK_IMPORTED_MODULE_0___default.a({\n \"id\": \"icon-zip\",\n \"use\": \"icon-zip-usage\",\n \"viewBox\": \"0 0 128 128\",\n \"content\": \"\"\n});\nvar result = svg_sprite_loader_runtime_browser_sprite_build__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);\n/* harmony default export */ __webpack_exports__[\"default\"] = (symbol);\n\n//# sourceURL=webpack:///./src/icons/svg/zip.svg?"); - -/***/ }), - -/***/ "./src/layout/components/AppMain.vue": -/*!*******************************************!*\ - !*** ./src/layout/components/AppMain.vue ***! - \*******************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AppMain_vue_vue_type_template_id_078753dd_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppMain.vue?vue&type=template&id=078753dd&scoped=true& */ \"./src/layout/components/AppMain.vue?vue&type=template&id=078753dd&scoped=true&\");\n/* harmony import */ var _AppMain_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AppMain.vue?vue&type=script&lang=js& */ \"./src/layout/components/AppMain.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _AppMain_vue_vue_type_style_index_0_id_078753dd_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AppMain.vue?vue&type=style&index=0&id=078753dd&lang=scss&scoped=true& */ \"./src/layout/components/AppMain.vue?vue&type=style&index=0&id=078753dd&lang=scss&scoped=true&\");\n/* harmony import */ var _AppMain_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AppMain.vue?vue&type=style&index=1&lang=scss& */ \"./src/layout/components/AppMain.vue?vue&type=style&index=1&lang=scss&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(\n _AppMain_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _AppMain_vue_vue_type_template_id_078753dd_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _AppMain_vue_vue_type_template_id_078753dd_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"078753dd\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/AppMain.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/AppMain.vue?"); - -/***/ }), - -/***/ "./src/layout/components/AppMain.vue?vue&type=script&lang=js&": -/*!********************************************************************!*\ - !*** ./src/layout/components/AppMain.vue?vue&type=script&lang=js& ***! - \********************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../node_modules/babel-loader/lib!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./AppMain.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/AppMain.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/AppMain.vue?"); - -/***/ }), - -/***/ "./src/layout/components/AppMain.vue?vue&type=style&index=0&id=078753dd&lang=scss&scoped=true&": -/*!*****************************************************************************************************!*\ - !*** ./src/layout/components/AppMain.vue?vue&type=style&index=0&id=078753dd&lang=scss&scoped=true& ***! - \*****************************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_0_id_078753dd_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./AppMain.vue?vue&type=style&index=0&id=078753dd&lang=scss&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/AppMain.vue?vue&type=style&index=0&id=078753dd&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_0_id_078753dd_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_0_id_078753dd_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_0_id_078753dd_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_0_id_078753dd_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/components/AppMain.vue?"); - -/***/ }), - -/***/ "./src/layout/components/AppMain.vue?vue&type=style&index=1&lang=scss&": -/*!*****************************************************************************!*\ - !*** ./src/layout/components/AppMain.vue?vue&type=style&index=1&lang=scss& ***! - \*****************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./AppMain.vue?vue&type=style&index=1&lang=scss& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/AppMain.vue?vue&type=style&index=1&lang=scss&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/components/AppMain.vue?"); - -/***/ }), - -/***/ "./src/layout/components/AppMain.vue?vue&type=template&id=078753dd&scoped=true&": -/*!**************************************************************************************!*\ - !*** ./src/layout/components/AppMain.vue?vue&type=template&id=078753dd&scoped=true& ***! - \**************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_template_id_078753dd_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./AppMain.vue?vue&type=template&id=078753dd&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/AppMain.vue?vue&type=template&id=078753dd&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_template_id_078753dd_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_AppMain_vue_vue_type_template_id_078753dd_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/AppMain.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Navbar.vue": -/*!******************************************!*\ - !*** ./src/layout/components/Navbar.vue ***! - \******************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Navbar_vue_vue_type_template_id_d16d6306_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Navbar.vue?vue&type=template&id=d16d6306&scoped=true& */ \"./src/layout/components/Navbar.vue?vue&type=template&id=d16d6306&scoped=true&\");\n/* harmony import */ var _Navbar_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Navbar.vue?vue&type=script&lang=js& */ \"./src/layout/components/Navbar.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _Navbar_vue_vue_type_style_index_0_id_d16d6306_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Navbar.vue?vue&type=style&index=0&id=d16d6306&lang=scss&scoped=true& */ \"./src/layout/components/Navbar.vue?vue&type=style&index=0&id=d16d6306&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _Navbar_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _Navbar_vue_vue_type_template_id_d16d6306_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _Navbar_vue_vue_type_template_id_d16d6306_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"d16d6306\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/Navbar.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/Navbar.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Navbar.vue?vue&type=script&lang=js&": -/*!*******************************************************************!*\ - !*** ./src/layout/components/Navbar.vue?vue&type=script&lang=js& ***! - \*******************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../node_modules/babel-loader/lib!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./Navbar.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Navbar.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/Navbar.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Navbar.vue?vue&type=style&index=0&id=d16d6306&lang=scss&scoped=true&": -/*!****************************************************************************************************!*\ - !*** ./src/layout/components/Navbar.vue?vue&type=style&index=0&id=d16d6306&lang=scss&scoped=true& ***! - \****************************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_style_index_0_id_d16d6306_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./Navbar.vue?vue&type=style&index=0&id=d16d6306&lang=scss&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Navbar.vue?vue&type=style&index=0&id=d16d6306&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_style_index_0_id_d16d6306_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_style_index_0_id_d16d6306_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_style_index_0_id_d16d6306_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_style_index_0_id_d16d6306_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/components/Navbar.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Navbar.vue?vue&type=template&id=d16d6306&scoped=true&": -/*!*************************************************************************************!*\ - !*** ./src/layout/components/Navbar.vue?vue&type=template&id=d16d6306&scoped=true& ***! - \*************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_template_id_d16d6306_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../node_modules/vue-loader/lib??vue-loader-options!./Navbar.vue?vue&type=template&id=d16d6306&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Navbar.vue?vue&type=template&id=d16d6306&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_template_id_d16d6306_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Navbar_vue_vue_type_template_id_d16d6306_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/Navbar.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Settings/index.vue": -/*!**************************************************!*\ - !*** ./src/layout/components/Settings/index.vue ***! - \**************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _index_vue_vue_type_template_id_126b135a_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.vue?vue&type=template&id=126b135a&scoped=true& */ \"./src/layout/components/Settings/index.vue?vue&type=template&id=126b135a&scoped=true&\");\n/* harmony import */ var _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./index.vue?vue&type=script&lang=js& */ \"./src/layout/components/Settings/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _index_vue_vue_type_style_index_0_id_126b135a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./index.vue?vue&type=style&index=0&id=126b135a&lang=scss&scoped=true& */ \"./src/layout/components/Settings/index.vue?vue&type=style&index=0&id=126b135a&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _index_vue_vue_type_template_id_126b135a_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _index_vue_vue_type_template_id_126b135a_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"126b135a\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/Settings/index.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/Settings/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Settings/index.vue?vue&type=script&lang=js&": -/*!***************************************************************************!*\ - !*** ./src/layout/components/Settings/index.vue?vue&type=script&lang=js& ***! - \***************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Settings/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/Settings/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Settings/index.vue?vue&type=style&index=0&id=126b135a&lang=scss&scoped=true&": -/*!************************************************************************************************************!*\ - !*** ./src/layout/components/Settings/index.vue?vue&type=style&index=0&id=126b135a&lang=scss&scoped=true& ***! - \************************************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_126b135a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=style&index=0&id=126b135a&lang=scss&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Settings/index.vue?vue&type=style&index=0&id=126b135a&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_126b135a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_126b135a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_126b135a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_126b135a_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/components/Settings/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Settings/index.vue?vue&type=template&id=126b135a&scoped=true&": -/*!*********************************************************************************************!*\ - !*** ./src/layout/components/Settings/index.vue?vue&type=template&id=126b135a&scoped=true& ***! - \*********************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_126b135a_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=template&id=126b135a&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Settings/index.vue?vue&type=template&id=126b135a&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_126b135a_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_126b135a_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/Settings/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/FixiOSBug.js": -/*!****************************************************!*\ - !*** ./src/layout/components/Sidebar/FixiOSBug.js ***! - \****************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n computed: {\n device: function device() {\n return this.$store.state.app.device;\n }\n },\n mounted: function mounted() {\n // In order to fix the click on menu on the ios device will trigger the mouseleave bug\n // https://github.com/PanJiaChen/vue-element-admin/issues/1135\n this.fixBugIniOS();\n },\n methods: {\n fixBugIniOS: function fixBugIniOS() {\n var _this = this;\n\n var $subMenu = this.$refs.subMenu;\n\n if ($subMenu) {\n var handleMouseleave = $subMenu.handleMouseleave;\n\n $subMenu.handleMouseleave = function (e) {\n if (_this.device === 'mobile') {\n return;\n }\n\n handleMouseleave(e);\n };\n }\n }\n }\n});\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/FixiOSBug.js?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Item.vue": -/*!************************************************!*\ - !*** ./src/layout/components/Sidebar/Item.vue ***! - \************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Item_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Item.vue?vue&type=script&lang=js& */ \"./src/layout/components/Sidebar/Item.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\nvar render, staticRenderFns\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(\n _Item_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"],\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/Sidebar/Item.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Item.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Item.vue?vue&type=script&lang=js&": -/*!*************************************************************************!*\ - !*** ./src/layout/components/Sidebar/Item.vue?vue&type=script&lang=js& ***! - \*************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Item_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Item.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/Item.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Item_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Item.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Link.vue": -/*!************************************************!*\ - !*** ./src/layout/components/Sidebar/Link.vue ***! - \************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Link_vue_vue_type_template_id_32e8ab1a___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Link.vue?vue&type=template&id=32e8ab1a& */ \"./src/layout/components/Sidebar/Link.vue?vue&type=template&id=32e8ab1a&\");\n/* harmony import */ var _Link_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Link.vue?vue&type=script&lang=js& */ \"./src/layout/components/Sidebar/Link.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _Link_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _Link_vue_vue_type_template_id_32e8ab1a___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _Link_vue_vue_type_template_id_32e8ab1a___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/Sidebar/Link.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Link.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Link.vue?vue&type=script&lang=js&": -/*!*************************************************************************!*\ - !*** ./src/layout/components/Sidebar/Link.vue?vue&type=script&lang=js& ***! - \*************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Link_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Link.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/Link.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Link_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Link.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Link.vue?vue&type=template&id=32e8ab1a&": -/*!*******************************************************************************!*\ - !*** ./src/layout/components/Sidebar/Link.vue?vue&type=template&id=32e8ab1a& ***! - \*******************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Link_vue_vue_type_template_id_32e8ab1a___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Link.vue?vue&type=template&id=32e8ab1a& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/Link.vue?vue&type=template&id=32e8ab1a&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Link_vue_vue_type_template_id_32e8ab1a___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Link_vue_vue_type_template_id_32e8ab1a___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Link.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Logo.vue": -/*!************************************************!*\ - !*** ./src/layout/components/Sidebar/Logo.vue ***! - \************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Logo_vue_vue_type_template_id_6494804b_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Logo.vue?vue&type=template&id=6494804b&scoped=true& */ \"./src/layout/components/Sidebar/Logo.vue?vue&type=template&id=6494804b&scoped=true&\");\n/* harmony import */ var _Logo_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Logo.vue?vue&type=script&lang=js& */ \"./src/layout/components/Sidebar/Logo.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _Logo_vue_vue_type_style_index_0_id_6494804b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Logo.vue?vue&type=style&index=0&id=6494804b&lang=scss&scoped=true& */ \"./src/layout/components/Sidebar/Logo.vue?vue&type=style&index=0&id=6494804b&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _Logo_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _Logo_vue_vue_type_template_id_6494804b_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _Logo_vue_vue_type_template_id_6494804b_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"6494804b\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/Sidebar/Logo.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Logo.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Logo.vue?vue&type=script&lang=js&": -/*!*************************************************************************!*\ - !*** ./src/layout/components/Sidebar/Logo.vue?vue&type=script&lang=js& ***! - \*************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Logo.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/Logo.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Logo.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Logo.vue?vue&type=style&index=0&id=6494804b&lang=scss&scoped=true&": -/*!**********************************************************************************************************!*\ - !*** ./src/layout/components/Sidebar/Logo.vue?vue&type=style&index=0&id=6494804b&lang=scss&scoped=true& ***! - \**********************************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_style_index_0_id_6494804b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Logo.vue?vue&type=style&index=0&id=6494804b&lang=scss&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/Logo.vue?vue&type=style&index=0&id=6494804b&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_style_index_0_id_6494804b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_style_index_0_id_6494804b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_style_index_0_id_6494804b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_style_index_0_id_6494804b_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Logo.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/Logo.vue?vue&type=template&id=6494804b&scoped=true&": -/*!*******************************************************************************************!*\ - !*** ./src/layout/components/Sidebar/Logo.vue?vue&type=template&id=6494804b&scoped=true& ***! - \*******************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_template_id_6494804b_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Logo.vue?vue&type=template&id=6494804b&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/Logo.vue?vue&type=template&id=6494804b&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_template_id_6494804b_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Logo_vue_vue_type_template_id_6494804b_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/Logo.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/SidebarItem.vue": -/*!*******************************************************!*\ - !*** ./src/layout/components/Sidebar/SidebarItem.vue ***! - \*******************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _SidebarItem_vue_vue_type_template_id_2d2bbdc2___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SidebarItem.vue?vue&type=template&id=2d2bbdc2& */ \"./src/layout/components/Sidebar/SidebarItem.vue?vue&type=template&id=2d2bbdc2&\");\n/* harmony import */ var _SidebarItem_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./SidebarItem.vue?vue&type=script&lang=js& */ \"./src/layout/components/Sidebar/SidebarItem.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _SidebarItem_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _SidebarItem_vue_vue_type_template_id_2d2bbdc2___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _SidebarItem_vue_vue_type_template_id_2d2bbdc2___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/Sidebar/SidebarItem.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/SidebarItem.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/SidebarItem.vue?vue&type=script&lang=js&": -/*!********************************************************************************!*\ - !*** ./src/layout/components/Sidebar/SidebarItem.vue?vue&type=script&lang=js& ***! - \********************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SidebarItem_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./SidebarItem.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/SidebarItem.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SidebarItem_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/SidebarItem.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/SidebarItem.vue?vue&type=template&id=2d2bbdc2&": -/*!**************************************************************************************!*\ - !*** ./src/layout/components/Sidebar/SidebarItem.vue?vue&type=template&id=2d2bbdc2& ***! - \**************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SidebarItem_vue_vue_type_template_id_2d2bbdc2___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./SidebarItem.vue?vue&type=template&id=2d2bbdc2& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/SidebarItem.vue?vue&type=template&id=2d2bbdc2&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SidebarItem_vue_vue_type_template_id_2d2bbdc2___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SidebarItem_vue_vue_type_template_id_2d2bbdc2___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/SidebarItem.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/index.vue": -/*!*************************************************!*\ - !*** ./src/layout/components/Sidebar/index.vue ***! - \*************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _index_vue_vue_type_template_id_33ec43fc___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.vue?vue&type=template&id=33ec43fc& */ \"./src/layout/components/Sidebar/index.vue?vue&type=template&id=33ec43fc&\");\n/* harmony import */ var _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./index.vue?vue&type=script&lang=js& */ \"./src/layout/components/Sidebar/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _index_vue_vue_type_template_id_33ec43fc___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _index_vue_vue_type_template_id_33ec43fc___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/Sidebar/index.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/index.vue?vue&type=script&lang=js&": -/*!**************************************************************************!*\ - !*** ./src/layout/components/Sidebar/index.vue?vue&type=script&lang=js& ***! - \**************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/Sidebar/index.vue?vue&type=template&id=33ec43fc&": -/*!********************************************************************************!*\ - !*** ./src/layout/components/Sidebar/index.vue?vue&type=template&id=33ec43fc& ***! - \********************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_33ec43fc___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=template&id=33ec43fc& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/Sidebar/index.vue?vue&type=template&id=33ec43fc&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_33ec43fc___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_33ec43fc___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/Sidebar/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/ScrollPane.vue": -/*!*******************************************************!*\ - !*** ./src/layout/components/TagsView/ScrollPane.vue ***! - \*******************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _ScrollPane_vue_vue_type_template_id_be6b7bae_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ScrollPane.vue?vue&type=template&id=be6b7bae&scoped=true& */ \"./src/layout/components/TagsView/ScrollPane.vue?vue&type=template&id=be6b7bae&scoped=true&\");\n/* harmony import */ var _ScrollPane_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ScrollPane.vue?vue&type=script&lang=js& */ \"./src/layout/components/TagsView/ScrollPane.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _ScrollPane_vue_vue_type_style_index_0_id_be6b7bae_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ScrollPane.vue?vue&type=style&index=0&id=be6b7bae&lang=scss&scoped=true& */ \"./src/layout/components/TagsView/ScrollPane.vue?vue&type=style&index=0&id=be6b7bae&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _ScrollPane_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _ScrollPane_vue_vue_type_template_id_be6b7bae_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _ScrollPane_vue_vue_type_template_id_be6b7bae_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"be6b7bae\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/TagsView/ScrollPane.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/TagsView/ScrollPane.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/ScrollPane.vue?vue&type=script&lang=js&": -/*!********************************************************************************!*\ - !*** ./src/layout/components/TagsView/ScrollPane.vue?vue&type=script&lang=js& ***! - \********************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./ScrollPane.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/TagsView/ScrollPane.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/TagsView/ScrollPane.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/ScrollPane.vue?vue&type=style&index=0&id=be6b7bae&lang=scss&scoped=true&": -/*!*****************************************************************************************************************!*\ - !*** ./src/layout/components/TagsView/ScrollPane.vue?vue&type=style&index=0&id=be6b7bae&lang=scss&scoped=true& ***! - \*****************************************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_style_index_0_id_be6b7bae_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./ScrollPane.vue?vue&type=style&index=0&id=be6b7bae&lang=scss&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/TagsView/ScrollPane.vue?vue&type=style&index=0&id=be6b7bae&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_style_index_0_id_be6b7bae_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_style_index_0_id_be6b7bae_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_style_index_0_id_be6b7bae_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_style_index_0_id_be6b7bae_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/components/TagsView/ScrollPane.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/ScrollPane.vue?vue&type=template&id=be6b7bae&scoped=true&": -/*!**************************************************************************************************!*\ - !*** ./src/layout/components/TagsView/ScrollPane.vue?vue&type=template&id=be6b7bae&scoped=true& ***! - \**************************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_template_id_be6b7bae_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./ScrollPane.vue?vue&type=template&id=be6b7bae&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/TagsView/ScrollPane.vue?vue&type=template&id=be6b7bae&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_template_id_be6b7bae_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ScrollPane_vue_vue_type_template_id_be6b7bae_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/TagsView/ScrollPane.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/index.vue": -/*!**************************************************!*\ - !*** ./src/layout/components/TagsView/index.vue ***! - \**************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _index_vue_vue_type_template_id_fac8ca64_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.vue?vue&type=template&id=fac8ca64&scoped=true& */ \"./src/layout/components/TagsView/index.vue?vue&type=template&id=fac8ca64&scoped=true&\");\n/* harmony import */ var _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./index.vue?vue&type=script&lang=js& */ \"./src/layout/components/TagsView/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _index_vue_vue_type_style_index_0_id_fac8ca64_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./index.vue?vue&type=style&index=0&id=fac8ca64&lang=scss&scoped=true& */ \"./src/layout/components/TagsView/index.vue?vue&type=style&index=0&id=fac8ca64&lang=scss&scoped=true&\");\n/* harmony import */ var _index_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./index.vue?vue&type=style&index=1&lang=scss& */ \"./src/layout/components/TagsView/index.vue?vue&type=style&index=1&lang=scss&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(\n _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _index_vue_vue_type_template_id_fac8ca64_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _index_vue_vue_type_template_id_fac8ca64_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"fac8ca64\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/components/TagsView/index.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/components/TagsView/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/index.vue?vue&type=script&lang=js&": -/*!***************************************************************************!*\ - !*** ./src/layout/components/TagsView/index.vue?vue&type=script&lang=js& ***! - \***************************************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/TagsView/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/components/TagsView/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/index.vue?vue&type=style&index=0&id=fac8ca64&lang=scss&scoped=true&": -/*!************************************************************************************************************!*\ - !*** ./src/layout/components/TagsView/index.vue?vue&type=style&index=0&id=fac8ca64&lang=scss&scoped=true& ***! - \************************************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_fac8ca64_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=style&index=0&id=fac8ca64&lang=scss&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/TagsView/index.vue?vue&type=style&index=0&id=fac8ca64&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_fac8ca64_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_fac8ca64_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_fac8ca64_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_fac8ca64_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/components/TagsView/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/index.vue?vue&type=style&index=1&lang=scss&": -/*!************************************************************************************!*\ - !*** ./src/layout/components/TagsView/index.vue?vue&type=style&index=1&lang=scss& ***! - \************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=style&index=1&lang=scss& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/TagsView/index.vue?vue&type=style&index=1&lang=scss&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_1_lang_scss___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/components/TagsView/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/TagsView/index.vue?vue&type=template&id=fac8ca64&scoped=true&": -/*!*********************************************************************************************!*\ - !*** ./src/layout/components/TagsView/index.vue?vue&type=template&id=fac8ca64&scoped=true& ***! - \*********************************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_fac8ca64_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=template&id=fac8ca64&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/components/TagsView/index.vue?vue&type=template&id=fac8ca64&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_fac8ca64_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_fac8ca64_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/components/TagsView/index.vue?"); - -/***/ }), - -/***/ "./src/layout/components/index.js": -/*!****************************************!*\ - !*** ./src/layout/components/index.js ***! - \****************************************/ -/*! exports provided: AppMain, Navbar, Settings, Sidebar, TagsView */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AppMain__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppMain */ \"./src/layout/components/AppMain.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AppMain\", function() { return _AppMain__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _Navbar__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Navbar */ \"./src/layout/components/Navbar.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Navbar\", function() { return _Navbar__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _Settings__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Settings */ \"./src/layout/components/Settings/index.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Settings\", function() { return _Settings__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n/* harmony import */ var _Sidebar_index_vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Sidebar/index.vue */ \"./src/layout/components/Sidebar/index.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Sidebar\", function() { return _Sidebar_index_vue__WEBPACK_IMPORTED_MODULE_3__[\"default\"]; });\n\n/* harmony import */ var _TagsView_index_vue__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./TagsView/index.vue */ \"./src/layout/components/TagsView/index.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagsView\", function() { return _TagsView_index_vue__WEBPACK_IMPORTED_MODULE_4__[\"default\"]; });\n\n\n\n\n\n\n\n//# sourceURL=webpack:///./src/layout/components/index.js?"); - -/***/ }), - -/***/ "./src/layout/index.vue": -/*!******************************!*\ - !*** ./src/layout/index.vue ***! - \******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _index_vue_vue_type_template_id_13877386_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.vue?vue&type=template&id=13877386&scoped=true& */ \"./src/layout/index.vue?vue&type=template&id=13877386&scoped=true&\");\n/* harmony import */ var _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./index.vue?vue&type=script&lang=js& */ \"./src/layout/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _index_vue_vue_type_style_index_0_id_13877386_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./index.vue?vue&type=style&index=0&id=13877386&lang=scss&scoped=true& */ \"./src/layout/index.vue?vue&type=style&index=0&id=13877386&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _index_vue_vue_type_template_id_13877386_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _index_vue_vue_type_template_id_13877386_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"13877386\",\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"src/layout/index.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);\n\n//# sourceURL=webpack:///./src/layout/index.vue?"); - -/***/ }), - -/***/ "./src/layout/index.vue?vue&type=script&lang=js&": -/*!*******************************************************!*\ - !*** ./src/layout/index.vue?vue&type=script&lang=js& ***! - \*******************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/babel-loader/lib!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_13_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); \n\n//# sourceURL=webpack:///./src/layout/index.vue?"); - -/***/ }), - -/***/ "./src/layout/index.vue?vue&type=style&index=0&id=13877386&lang=scss&scoped=true&": -/*!****************************************************************************************!*\ - !*** ./src/layout/index.vue?vue&type=style&index=0&id=13877386&lang=scss&scoped=true& ***! - \****************************************************************************************/ -/*! no static exports found */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_13877386_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../node_modules/vue-style-loader??ref--9-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--9-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src??ref--9-oneOf-1-2!../../node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-1-3!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=style&index=0&id=13877386&lang=scss&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/dist/cjs.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/sass-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/index.vue?vue&type=style&index=0&id=13877386&lang=scss&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_13877386_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_13877386_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_13877386_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if([\"default\"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_style_index_0_id_13877386_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n\n\n//# sourceURL=webpack:///./src/layout/index.vue?"); - -/***/ }), - -/***/ "./src/layout/index.vue?vue&type=template&id=13877386&scoped=true&": -/*!*************************************************************************!*\ - !*** ./src/layout/index.vue?vue&type=template&id=13877386&scoped=true& ***! - \*************************************************************************/ -/*! exports provided: render, staticRenderFns */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_13877386_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"9323b05c-vue-loader-template\"}!../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib??vue-loader-options!./index.vue?vue&type=template&id=13877386&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"9323b05c-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/layout/index.vue?vue&type=template&id=13877386&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_13877386_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_9323b05c_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_template_id_13877386_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n\n\n//# sourceURL=webpack:///./src/layout/index.vue?"); - -/***/ }), - -/***/ "./src/layout/mixin/ResizeHandler.js": -/*!*******************************************!*\ - !*** ./src/layout/mixin/ResizeHandler.js ***! - \*******************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _store__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/store */ \"./src/store/index.js\");\n\nvar _document = document,\n body = _document.body;\nvar WIDTH = 992; // refer to Bootstrap's responsive design\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n watch: {\n $route: function $route(route) {\n if (this.device === 'mobile' && this.sidebar.opened) {\n _store__WEBPACK_IMPORTED_MODULE_0__[\"default\"].dispatch('app/closeSideBar', {\n withoutAnimation: false\n });\n }\n }\n },\n beforeMount: function beforeMount() {\n window.addEventListener('resize', this.$_resizeHandler);\n },\n beforeDestroy: function beforeDestroy() {\n window.removeEventListener('resize', this.$_resizeHandler);\n },\n mounted: function mounted() {\n var isMobile = this.$_isMobile();\n\n if (isMobile) {\n _store__WEBPACK_IMPORTED_MODULE_0__[\"default\"].dispatch('app/toggleDevice', 'mobile');\n _store__WEBPACK_IMPORTED_MODULE_0__[\"default\"].dispatch('app/closeSideBar', {\n withoutAnimation: true\n });\n }\n },\n methods: {\n // use $_ for mixins properties\n // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential\n $_isMobile: function $_isMobile() {\n var rect = body.getBoundingClientRect();\n return rect.width - 1 < WIDTH;\n },\n $_resizeHandler: function $_resizeHandler() {\n if (!document.hidden) {\n var isMobile = this.$_isMobile();\n _store__WEBPACK_IMPORTED_MODULE_0__[\"default\"].dispatch('app/toggleDevice', isMobile ? 'mobile' : 'desktop');\n\n if (isMobile) {\n _store__WEBPACK_IMPORTED_MODULE_0__[\"default\"].dispatch('app/closeSideBar', {\n withoutAnimation: true\n });\n }\n }\n }\n }\n});\n\n//# sourceURL=webpack:///./src/layout/mixin/ResizeHandler.js?"); - -/***/ }), - -/***/ "./src/main.js": -/*!*********************!*\ - !*** ./src/main.js ***! - \*********************/ -/*! no exports provided */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.object.keys */ \"./node_modules/core-js/modules/es6.object.keys.js\");\n/* harmony import */ var core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/web.dom.iterable */ \"./node_modules/core-js/modules/web.dom.iterable.js\");\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_array_iterator_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node_modules/core-js/modules/es6.array.iterator.js */ \"./node_modules/core-js/modules/es6.array.iterator.js\");\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_array_iterator_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_array_iterator_js__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_promise_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/core-js/modules/es6.promise.js */ \"./node_modules/core-js/modules/es6.promise.js\");\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_promise_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_promise_js__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_object_assign_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./node_modules/core-js/modules/es6.object.assign.js */ \"./node_modules/core-js/modules/es6.object.assign.js\");\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_object_assign_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es6_object_assign_js__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es7_promise_finally_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./node_modules/core-js/modules/es7.promise.finally.js */ \"./node_modules/core-js/modules/es7.promise.finally.js\");\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es7_promise_finally_js__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_core_js_modules_es7_promise_finally_js__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var js_cookie__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! js-cookie */ \"./node_modules/js-cookie/src/js.cookie.js\");\n/* harmony import */ var js_cookie__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(js_cookie__WEBPACK_IMPORTED_MODULE_7__);\n/* harmony import */ var normalize_css_normalize_css__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! normalize.css/normalize.css */ \"./node_modules/normalize.css/normalize.css\");\n/* harmony import */ var normalize_css_normalize_css__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(normalize_css_normalize_css__WEBPACK_IMPORTED_MODULE_8__);\n/* harmony import */ var element_ui__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! element-ui */ \"./node_modules/element-ui/lib/element-ui.common.js\");\n/* harmony import */ var element_ui__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(element_ui__WEBPACK_IMPORTED_MODULE_9__);\n/* harmony import */ var _styles_element_variables_scss__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./styles/element-variables.scss */ \"./src/styles/element-variables.scss\");\n/* harmony import */ var _styles_element_variables_scss__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(_styles_element_variables_scss__WEBPACK_IMPORTED_MODULE_10__);\n/* harmony import */ var _styles_index_scss__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @/styles/index.scss */ \"./src/styles/index.scss\");\n/* harmony import */ var _styles_index_scss__WEBPACK_IMPORTED_MODULE_11___default = /*#__PURE__*/__webpack_require__.n(_styles_index_scss__WEBPACK_IMPORTED_MODULE_11__);\n/* harmony import */ var _App__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./App */ \"./src/App.vue\");\n/* harmony import */ var _store__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./store */ \"./src/store/index.js\");\n/* harmony import */ var _router__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./router */ \"./src/router/index.js\");\n/* harmony import */ var _icons__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./icons */ \"./src/icons/index.js\");\n/* harmony import */ var _permission__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./permission */ \"./src/permission.js\");\n/* harmony import */ var _utils_error_log__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./utils/error-log */ \"./src/utils/error-log.js\");\n/* harmony import */ var _filters__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./filters */ \"./src/filters/index.js\");\n\n\n\n\n\n\n\n\n // a modern alternative to CSS resets\n\n\n\n\n\n\n\n // icon\n\n // permission control\n\n // error log\n\n // Element UI\n\nvue__WEBPACK_IMPORTED_MODULE_6__[\"default\"].use(element_ui__WEBPACK_IMPORTED_MODULE_9___default.a, {\n size: js_cookie__WEBPACK_IMPORTED_MODULE_7___default.a.get('size') || 'medium' // set element-ui default size\n\n}); // 注册全局过滤器\n\nObject.keys(_filters__WEBPACK_IMPORTED_MODULE_18__).forEach(function (key) {\n vue__WEBPACK_IMPORTED_MODULE_6__[\"default\"].filter(key, _filters__WEBPACK_IMPORTED_MODULE_18__[key]);\n});\nvue__WEBPACK_IMPORTED_MODULE_6__[\"default\"].config.productionTip = false; // 环境标识\n\nvue__WEBPACK_IMPORTED_MODULE_6__[\"default\"].prototype.$demo = \"demo\" === 'demo';\nnew vue__WEBPACK_IMPORTED_MODULE_6__[\"default\"]({\n el: '#app',\n router: _router__WEBPACK_IMPORTED_MODULE_14__[\"default\"],\n store: _store__WEBPACK_IMPORTED_MODULE_13__[\"default\"],\n render: function render(h) {\n return h(_App__WEBPACK_IMPORTED_MODULE_12__[\"default\"]);\n }\n});\n\n//# sourceURL=webpack:///./src/main.js?"); - -/***/ }), - -/***/ "./src/permission.js": -/*!***************************!*\ - !*** ./src/permission.js ***! - \***************************/ -/*! no exports provided */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread2.js */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread2.js\");\n/* harmony import */ var regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! regenerator-runtime/runtime */ \"./node_modules/regenerator-runtime/runtime.js\");\n/* harmony import */ var regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/asyncToGenerator.js */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/asyncToGenerator.js\");\n/* harmony import */ var _router__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./router */ \"./src/router/index.js\");\n/* harmony import */ var _store__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./store */ \"./src/store/index.js\");\n/* harmony import */ var element_ui__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! element-ui */ \"./node_modules/element-ui/lib/element-ui.common.js\");\n/* harmony import */ var element_ui__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(element_ui__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var nprogress__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! nprogress */ \"./node_modules/nprogress/nprogress.js\");\n/* harmony import */ var nprogress__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(nprogress__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var nprogress_nprogress_css__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! nprogress/nprogress.css */ \"./node_modules/nprogress/nprogress.css\");\n/* harmony import */ var nprogress_nprogress_css__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(nprogress_nprogress_css__WEBPACK_IMPORTED_MODULE_7__);\n/* harmony import */ var _utils_auth__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @/utils/auth */ \"./src/utils/auth.js\");\n/* harmony import */ var _utils_get_page_title__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @/utils/get-page-title */ \"./src/utils/get-page-title.js\");\n\n\n\n\n\n\n // progress bar\n\n // progress bar style\n\n // get token from cookie\n\n\nnprogress__WEBPACK_IMPORTED_MODULE_6___default.a.configure({\n showSpinner: false\n}); // NProgress Configuration\n\nvar whiteList = ['/login', '/register']; // no redirect whitelist\n\n_router__WEBPACK_IMPORTED_MODULE_3__[\"default\"].beforeEach( /*#__PURE__*/function () {\n var _ref = Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])( /*#__PURE__*/regeneratorRuntime.mark(function _callee(to, from, next) {\n var siteData, hasToken, hasRoles, _yield$store$dispatch, roles, accessRoutes;\n\n return regeneratorRuntime.wrap(function _callee$(_context) {\n while (1) {\n switch (_context.prev = _context.next) {\n case 0:\n // start progress bar\n nprogress__WEBPACK_IMPORTED_MODULE_6___default.a.start(); // 获取网站基本信息\n\n siteData = _store__WEBPACK_IMPORTED_MODULE_4__[\"default\"].getters.siteData;\n\n if (siteData.siteName) {\n _context.next = 6;\n break;\n }\n\n _context.next = 5;\n return _store__WEBPACK_IMPORTED_MODULE_4__[\"default\"].dispatch('settings/getSite');\n\n case 5:\n siteData = _context.sent;\n\n case 6:\n // 页面标题\n document.title = Object(_utils_get_page_title__WEBPACK_IMPORTED_MODULE_9__[\"default\"])(siteData.siteName, to.meta.title); // 本地token\n\n hasToken = Object(_utils_auth__WEBPACK_IMPORTED_MODULE_8__[\"getToken\"])();\n\n if (!hasToken) {\n _context.next = 40;\n break;\n }\n\n if (!(to.path === '/login')) {\n _context.next = 14;\n break;\n }\n\n next({\n path: '/'\n });\n nprogress__WEBPACK_IMPORTED_MODULE_6___default.a.done();\n _context.next = 38;\n break;\n\n case 14:\n hasRoles = _store__WEBPACK_IMPORTED_MODULE_4__[\"default\"].getters.roles && _store__WEBPACK_IMPORTED_MODULE_4__[\"default\"].getters.roles.length > 0;\n\n if (!hasRoles) {\n _context.next = 19;\n break;\n }\n\n next();\n _context.next = 38;\n break;\n\n case 19:\n _context.prev = 19;\n _context.next = 22;\n return _store__WEBPACK_IMPORTED_MODULE_4__[\"default\"].dispatch('user/getInfo');\n\n case 22:\n _yield$store$dispatch = _context.sent;\n roles = _yield$store$dispatch.roles;\n _context.next = 26;\n return _store__WEBPACK_IMPORTED_MODULE_4__[\"default\"].dispatch('permission/generateRoutes', roles);\n\n case 26:\n accessRoutes = _context.sent;\n _router__WEBPACK_IMPORTED_MODULE_3__[\"default\"].addRoutes(accessRoutes);\n next(Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({}, to), {}, {\n replace: true\n }));\n _context.next = 38;\n break;\n\n case 31:\n _context.prev = 31;\n _context.t0 = _context[\"catch\"](19);\n _context.next = 35;\n return _store__WEBPACK_IMPORTED_MODULE_4__[\"default\"].dispatch('user/resetToken');\n\n case 35:\n element_ui__WEBPACK_IMPORTED_MODULE_5__[\"Message\"].error(_context.t0 || 'Has Error');\n next(\"/login?redirect=\".concat(to.path));\n nprogress__WEBPACK_IMPORTED_MODULE_6___default.a.done();\n\n case 38:\n _context.next = 41;\n break;\n\n case 40:\n // 排除白名单\n if (whiteList.indexOf(to.path) !== -1) {\n next();\n } else {\n // 跳转到登录页面\n next(\"/login?redirect=\".concat(to.path));\n nprogress__WEBPACK_IMPORTED_MODULE_6___default.a.done();\n }\n\n case 41:\n case \"end\":\n return _context.stop();\n }\n }\n }, _callee, null, [[19, 31]]);\n }));\n\n return function (_x, _x2, _x3) {\n return _ref.apply(this, arguments);\n };\n}());\n_router__WEBPACK_IMPORTED_MODULE_3__[\"default\"].afterEach(function () {\n // finish progress bar\n nprogress__WEBPACK_IMPORTED_MODULE_6___default.a.done();\n});\n\n//# sourceURL=webpack:///./src/permission.js?"); - -/***/ }), - -/***/ "./src/router/index.js": -/*!*****************************!*\ - !*** ./src/router/index.js ***! - \*****************************/ -/*! exports provided: constantRoutes, asyncRoutes, resetRouter, default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"constantRoutes\", function() { return constantRoutes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"asyncRoutes\", function() { return asyncRoutes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resetRouter\", function() { return resetRouter; });\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vue_router__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! vue-router */ \"./node_modules/vue-router/dist/vue-router.esm.js\");\n/* harmony import */ var _layout__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/layout */ \"./src/layout/index.vue\");\n/* harmony import */ var _views_login_components_LoginLayout__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/views/login/components/LoginLayout */ \"./src/views/login/components/LoginLayout.vue\");\n\n\nvue__WEBPACK_IMPORTED_MODULE_0__[\"default\"].use(vue_router__WEBPACK_IMPORTED_MODULE_1__[\"default\"]); // 主要框架\n\n // 登录框架\n\n\nvar constantRoutes = [{\n path: '/redirect',\n component: _layout__WEBPACK_IMPORTED_MODULE_2__[\"default\"],\n hidden: true,\n children: [{\n path: '/redirect/:path*',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 27).then(__webpack_require__.bind(null, /*! @/views/redirect/index */ \"./src/views/redirect/index.vue\"));\n }\n }]\n}, {\n path: '/login',\n component: _views_login_components_LoginLayout__WEBPACK_IMPORTED_MODULE_3__[\"default\"],\n hidden: true,\n children: [{\n path: '/login',\n name: 'Login',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 25).then(__webpack_require__.bind(null, /*! @/views/login/index */ \"./src/views/login/index.vue\"));\n },\n hidden: true\n }, {\n path: '/register',\n name: 'Register',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 26).then(__webpack_require__.bind(null, /*! @/views/login/register */ \"./src/views/login/register.vue\"));\n },\n hidden: true\n }]\n}, {\n path: '/404',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 12).then(__webpack_require__.bind(null, /*! @/views/error-page/404 */ \"./src/views/error-page/404.vue\"));\n },\n hidden: true\n}, {\n path: '/401',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 16).then(__webpack_require__.bind(null, /*! @/views/error-page/401 */ \"./src/views/error-page/401.vue\"));\n },\n hidden: true\n}, {\n path: '/',\n component: _layout__WEBPACK_IMPORTED_MODULE_2__[\"default\"],\n redirect: '/dashboard',\n children: [{\n path: 'dashboard',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 11).then(__webpack_require__.bind(null, /*! @/views/dashboard/index */ \"./src/views/dashboard/index.vue\"));\n },\n name: 'Dashboard',\n meta: {\n title: '控制台',\n icon: 'dashboard',\n affix: true\n }\n }, {\n path: 'qu/view/:id',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 18).then(__webpack_require__.bind(null, /*! @/views/qu/qu/view */ \"./src/views/qu/qu/view.vue\"));\n },\n name: 'ViewQu',\n meta: {\n title: '题目详情',\n noCache: true,\n activeMenu: '/manage/qu'\n },\n hidden: true\n }]\n}, {\n path: '/profile',\n component: _layout__WEBPACK_IMPORTED_MODULE_2__[\"default\"],\n redirect: '/profile/index',\n hidden: true,\n children: [{\n path: 'index',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 4).then(__webpack_require__.bind(null, /*! @/views/profile/index */ \"./src/views/profile/index.vue\"));\n },\n name: 'Profile',\n meta: {\n title: '个人资料',\n icon: 'user',\n noCache: true\n }\n }]\n}];\n/**\n * asyncRoutes\n * the routes that need to be dynamically loaded based on user roles\n */\n\nvar asyncRoutes = [{\n path: '/exam/start/:id',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 5).then(__webpack_require__.bind(null, /*! @/views/paper/exam/exam */ \"./src/views/paper/exam/exam.vue\"));\n },\n name: 'StartExam',\n meta: {\n title: '开始考试'\n },\n hidden: true\n}, {\n path: '/my',\n component: _layout__WEBPACK_IMPORTED_MODULE_2__[\"default\"],\n redirect: '/my/exam',\n name: 'Online',\n meta: {\n title: '在线考试',\n icon: 'list',\n roles: ['student', 'sa']\n },\n children: [{\n path: 'exam',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(19)]).then(__webpack_require__.bind(null, /*! @/views/paper/exam/list */ \"./src/views/paper/exam/list.vue\"));\n },\n name: 'ExamOnline',\n meta: {\n title: '在线考试',\n noCache: true,\n icon: 'guide'\n }\n }, {\n path: 'exam/prepare/:examId',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 13).then(__webpack_require__.bind(null, /*! @/views/paper/exam/preview */ \"./src/views/paper/exam/preview.vue\"));\n },\n name: 'PreExam',\n meta: {\n title: '准备考试',\n noCache: true,\n activeMenu: '/my/exam'\n },\n hidden: true\n }, {\n path: 'exam/result/:id',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 17).then(__webpack_require__.bind(null, /*! @/views/paper/exam/result */ \"./src/views/paper/exam/result.vue\"));\n },\n name: 'ShowExam',\n meta: {\n title: '考试结果',\n noCache: true,\n activeMenu: '/online/exam'\n },\n hidden: true\n }, {\n path: 'exam/records',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(7)]).then(__webpack_require__.bind(null, /*! @/views/user/exam/my */ \"./src/views/user/exam/my.vue\"));\n },\n name: 'ListMyExam',\n meta: {\n title: '我的成绩',\n noCache: true,\n icon: 'results'\n }\n }, {\n path: 'book/list/:examId',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(24)]).then(__webpack_require__.bind(null, /*! @/views/user/book */ \"./src/views/user/book/index.vue\"));\n },\n name: 'BookList',\n meta: {\n title: '考试错题',\n noCache: true,\n activeMenu: '/my/exam/records'\n },\n hidden: true\n }, {\n path: 'book/training/:examId',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 15).then(__webpack_require__.bind(null, /*! @/views/user/book/train */ \"./src/views/user/book/train.vue\"));\n },\n name: 'BookTraining',\n meta: {\n title: '错题训练',\n noCache: true,\n activeMenu: '/my/exam/records'\n },\n hidden: true\n }]\n}, {\n path: '/exam',\n component: _layout__WEBPACK_IMPORTED_MODULE_2__[\"default\"],\n redirect: '/exam/repo',\n name: 'Manage',\n meta: {\n title: '考试管理',\n icon: 'example',\n roles: ['sa', 'teacher']\n },\n children: [{\n path: 'repo',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(21)]).then(__webpack_require__.bind(null, /*! @/views/qu/repo */ \"./src/views/qu/repo/index.vue\"));\n },\n name: 'ListRepo',\n meta: {\n title: '题库管理',\n noCache: true,\n icon: 'repo'\n }\n }, {\n path: 'repo/add',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 3).then(__webpack_require__.bind(null, /*! @/views/qu/repo/form */ \"./src/views/qu/repo/form.vue\"));\n },\n name: 'AddRepo',\n meta: {\n title: '添加题库',\n noCache: true,\n activeMenu: '/exam/repo'\n },\n hidden: true\n }, {\n path: 'repo/update/:id',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 3).then(__webpack_require__.bind(null, /*! @/views/qu/repo/form */ \"./src/views/qu/repo/form.vue\"));\n },\n name: 'UpdateRepo',\n meta: {\n title: '题库详情',\n noCache: true,\n activeMenu: '/exam/repo'\n },\n hidden: true\n }, {\n path: 'qu',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(14)]).then(__webpack_require__.bind(null, /*! @/views/qu/qu */ \"./src/views/qu/qu/index.vue\"));\n },\n name: 'ListQu',\n meta: {\n title: '试题管理',\n noCache: true,\n icon: 'support'\n }\n }, {\n path: 'qu/add',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(0)]).then(__webpack_require__.bind(null, /*! @/views/qu/qu/form */ \"./src/views/qu/qu/form.vue\"));\n },\n name: 'AddQu',\n meta: {\n title: '添加试题',\n noCache: true,\n activeMenu: '/exam/qu'\n },\n hidden: true\n }, {\n path: 'qu/update/:id',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(0)]).then(__webpack_require__.bind(null, /*! @/views/qu/qu/form */ \"./src/views/qu/qu/form.vue\"));\n },\n name: 'UpdateQu',\n meta: {\n title: '修改试题',\n noCache: true,\n activeMenu: '/exam/qu'\n },\n hidden: true\n }, {\n path: 'exam',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(20)]).then(__webpack_require__.bind(null, /*! @/views/exam/exam */ \"./src/views/exam/exam/index.vue\"));\n },\n name: 'ListExam',\n meta: {\n title: '考试管理',\n noCache: true,\n icon: 'log'\n }\n }, {\n path: 'exam/add',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(2)]).then(__webpack_require__.bind(null, /*! @/views/exam/exam/form */ \"./src/views/exam/exam/form.vue\"));\n },\n name: 'AddExam',\n meta: {\n title: '添加考试',\n noCache: true,\n activeMenu: '/exam/exam'\n },\n hidden: true\n }, {\n path: 'exam/update/:id',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(2)]).then(__webpack_require__.bind(null, /*! @/views/exam/exam/form */ \"./src/views/exam/exam/form.vue\"));\n },\n name: 'UpdateExam',\n meta: {\n title: '修改考试',\n noCache: true,\n activeMenu: '/exam/exam'\n },\n hidden: true\n }, {\n path: 'exam/users/:examId',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(6)]).then(__webpack_require__.bind(null, /*! @/views/user/exam */ \"./src/views/user/exam/index.vue\"));\n },\n name: 'ListExamUser',\n meta: {\n title: '考试人员',\n noCache: true,\n activeMenu: '/exam/exam'\n },\n hidden: true\n }, {\n path: 'exam/paper/:examId',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(1), __webpack_require__.e(9)]).then(__webpack_require__.bind(null, /*! @/views/paper/paper */ \"./src/views/paper/paper/index.vue\"));\n },\n name: 'ListPaper',\n meta: {\n title: '考试记录',\n noCache: true,\n activeMenu: '/exam/exam'\n },\n hidden: true\n }]\n}, {\n path: '/sys',\n component: _layout__WEBPACK_IMPORTED_MODULE_2__[\"default\"],\n redirect: '/sys/config',\n name: 'Sys',\n meta: {\n title: '系统设置',\n icon: 'configure',\n roles: ['sa']\n },\n children: [{\n path: 'config',\n component: function component() {\n return __webpack_require__.e(/*! import() */ 8).then(__webpack_require__.bind(null, /*! @/views/sys/config */ \"./src/views/sys/config/index.vue\"));\n },\n name: 'SysConfig',\n meta: {\n title: '系统配置',\n icon: 'theme'\n }\n }, {\n path: 'depart',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(22)]).then(__webpack_require__.bind(null, /*! @/views/sys/depart */ \"./src/views/sys/depart/index.vue\"));\n },\n name: 'SysDepart',\n meta: {\n title: '部门管理',\n icon: 'tree'\n }\n }, {\n path: 'role',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(23)]).then(__webpack_require__.bind(null, /*! @/views/sys/role */ \"./src/views/sys/role/index.vue\"));\n },\n name: 'SysRole',\n meta: {\n title: '角色管理',\n icon: 'role'\n }\n }, {\n path: 'user',\n component: function component() {\n return Promise.all(/*! import() */[__webpack_require__.e(\"chunk-commons\"), __webpack_require__.e(1), __webpack_require__.e(10)]).then(__webpack_require__.bind(null, /*! @/views/sys/user */ \"./src/views/sys/user/index.vue\"));\n },\n name: 'SysUser',\n meta: {\n title: '用户管理',\n icon: 'admin'\n }\n }]\n}, // 404 page must be placed at the end !!!\n{\n path: '*',\n redirect: '/dashboard',\n hidden: true\n}];\n\nvar createRouter = function createRouter() {\n return new vue_router__WEBPACK_IMPORTED_MODULE_1__[\"default\"]({\n // mode: 'history', // require service support\n scrollBehavior: function scrollBehavior() {\n return {\n y: 0\n };\n },\n routes: constantRoutes\n });\n};\n\nvar router = createRouter();\nfunction resetRouter() {\n var newRouter = createRouter();\n router.matcher = newRouter.matcher; // reset router\n}\n/* harmony default export */ __webpack_exports__[\"default\"] = (router);\n\n//# sourceURL=webpack:///./src/router/index.js?"); - -/***/ }), - -/***/ "./src/settings.js": -/*!*************************!*\ - !*** ./src/settings.js ***! - \*************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -eval("module.exports = {\n title: '云帆考试培训系统',\n\n /**\n * @type {boolean} true | false\n * @description Whether show the settings right-panel\n */\n showSettings: false,\n\n /**\n * @type {boolean} true | false\n * @description Whether need tagsView\n */\n tagsView: true,\n\n /**\n * @type {boolean} true | false\n * @description Whether fix the header\n */\n fixedHeader: false,\n\n /**\n * @type {boolean} true | false\n * @description Whether show the logo in sidebar\n */\n sidebarLogo: true,\n\n /**\n * @type {string | array} 'production' | ['production', 'development']\n * @description Need show err logs component.\n * The default is only used in the production env\n * If you want to also use it in dev, you can pass ['production', 'development']\n */\n errorLog: 'production'\n};\n\n//# sourceURL=webpack:///./src/settings.js?"); - -/***/ }), - -/***/ "./src/store/getters.js": -/*!******************************!*\ - !*** ./src/store/getters.js ***! - \******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.function.name */ \"./node_modules/core-js/modules/es6.function.name.js\");\n/* harmony import */ var core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_0__);\n\nvar getters = {\n sidebar: function sidebar(state) {\n return state.app.sidebar;\n },\n size: function size(state) {\n return state.app.size;\n },\n device: function device(state) {\n return state.app.device;\n },\n visitedViews: function visitedViews(state) {\n return state.tagsView.visitedViews;\n },\n cachedViews: function cachedViews(state) {\n return state.tagsView.cachedViews;\n },\n token: function token(state) {\n return state.user.token;\n },\n avatar: function avatar(state) {\n return state.user.avatar;\n },\n userId: function userId(state) {\n return state.user.userId;\n },\n name: function name(state) {\n return state.user.name;\n },\n realName: function realName(state) {\n return state.user.realName;\n },\n introduction: function introduction(state) {\n return state.user.introduction;\n },\n roles: function roles(state) {\n return state.user.roles;\n },\n permission_routes: function permission_routes(state) {\n return state.permission.routes;\n },\n errorLogs: function errorLogs(state) {\n return state.errorLog.logs;\n },\n siteData: function siteData(state) {\n return state.settings.siteData;\n }\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = (getters);\n\n//# sourceURL=webpack:///./src/store/getters.js?"); - -/***/ }), - -/***/ "./src/store/index.js": -/*!****************************!*\ - !*** ./src/store/index.js ***! - \****************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.regexp.replace */ \"./node_modules/core-js/modules/es6.regexp.replace.js\");\n/* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/web.dom.iterable */ \"./node_modules/core-js/modules/web.dom.iterable.js\");\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vuex */ \"./node_modules/vuex/dist/vuex.esm.js\");\n/* harmony import */ var _getters__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getters */ \"./src/store/getters.js\");\n\n\n\n\n\nvue__WEBPACK_IMPORTED_MODULE_2__[\"default\"].use(vuex__WEBPACK_IMPORTED_MODULE_3__[\"default\"]); // https://webpack.js.org/guides/dependency-management/#requirecontext\n\nvar modulesFiles = __webpack_require__(\"./src/store/modules sync recursive \\\\.js$\"); // you do not need `import app from './modules/app'`\n// it will auto require all vuex module from modules file\n\n\nvar modules = modulesFiles.keys().reduce(function (modules, modulePath) {\n // set './app.js' => 'app'\n var moduleName = modulePath.replace(/^\\.\\/(.*)\\.\\w+$/, '$1');\n var value = modulesFiles(modulePath);\n modules[moduleName] = value.default;\n return modules;\n}, {});\nvar store = new vuex__WEBPACK_IMPORTED_MODULE_3__[\"default\"].Store({\n modules: modules,\n getters: _getters__WEBPACK_IMPORTED_MODULE_4__[\"default\"]\n});\n/* harmony default export */ __webpack_exports__[\"default\"] = (store);\n\n//# sourceURL=webpack:///./src/store/index.js?"); - -/***/ }), - -/***/ "./src/store/modules sync recursive \\.js$": -/*!**************************************!*\ - !*** ./src/store/modules sync \.js$ ***! - \**************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -eval("var map = {\n\t\"./app.js\": \"./src/store/modules/app.js\",\n\t\"./errorLog.js\": \"./src/store/modules/errorLog.js\",\n\t\"./permission.js\": \"./src/store/modules/permission.js\",\n\t\"./settings.js\": \"./src/store/modules/settings.js\",\n\t\"./tagsView.js\": \"./src/store/modules/tagsView.js\",\n\t\"./user.js\": \"./src/store/modules/user.js\"\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = \"./src/store/modules sync recursive \\\\.js$\";\n\n//# sourceURL=webpack:///./src/store/modules_sync_\\.js$?"); - -/***/ }), - -/***/ "./src/store/modules/app.js": -/*!**********************************!*\ - !*** ./src/store/modules/app.js ***! - \**********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var js_cookie__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! js-cookie */ \"./node_modules/js-cookie/src/js.cookie.js\");\n/* harmony import */ var js_cookie__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(js_cookie__WEBPACK_IMPORTED_MODULE_0__);\n\nvar state = {\n sidebar: {\n opened: js_cookie__WEBPACK_IMPORTED_MODULE_0___default.a.get('sidebarStatus') ? !!+js_cookie__WEBPACK_IMPORTED_MODULE_0___default.a.get('sidebarStatus') : true,\n withoutAnimation: false\n },\n device: 'desktop',\n size: js_cookie__WEBPACK_IMPORTED_MODULE_0___default.a.get('size') || 'medium'\n};\nvar mutations = {\n TOGGLE_SIDEBAR: function TOGGLE_SIDEBAR(state) {\n state.sidebar.opened = !state.sidebar.opened;\n state.sidebar.withoutAnimation = false;\n\n if (state.sidebar.opened) {\n js_cookie__WEBPACK_IMPORTED_MODULE_0___default.a.set('sidebarStatus', 1);\n } else {\n js_cookie__WEBPACK_IMPORTED_MODULE_0___default.a.set('sidebarStatus', 0);\n }\n },\n CLOSE_SIDEBAR: function CLOSE_SIDEBAR(state, withoutAnimation) {\n js_cookie__WEBPACK_IMPORTED_MODULE_0___default.a.set('sidebarStatus', 0);\n state.sidebar.opened = false;\n state.sidebar.withoutAnimation = withoutAnimation;\n },\n TOGGLE_DEVICE: function TOGGLE_DEVICE(state, device) {\n state.device = device;\n },\n SET_SIZE: function SET_SIZE(state, size) {\n state.size = size;\n js_cookie__WEBPACK_IMPORTED_MODULE_0___default.a.set('size', size);\n }\n};\nvar actions = {\n toggleSideBar: function toggleSideBar(_ref) {\n var commit = _ref.commit;\n commit('TOGGLE_SIDEBAR');\n },\n closeSideBar: function closeSideBar(_ref2, _ref3) {\n var commit = _ref2.commit;\n var withoutAnimation = _ref3.withoutAnimation;\n commit('CLOSE_SIDEBAR', withoutAnimation);\n },\n toggleDevice: function toggleDevice(_ref4, device) {\n var commit = _ref4.commit;\n commit('TOGGLE_DEVICE', device);\n },\n setSize: function setSize(_ref5, size) {\n var commit = _ref5.commit;\n commit('SET_SIZE', size);\n }\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n namespaced: true,\n state: state,\n mutations: mutations,\n actions: actions\n});\n\n//# sourceURL=webpack:///./src/store/modules/app.js?"); - -/***/ }), - -/***/ "./src/store/modules/errorLog.js": -/*!***************************************!*\ - !*** ./src/store/modules/errorLog.js ***! - \***************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\nvar state = {\n logs: []\n};\nvar mutations = {\n ADD_ERROR_LOG: function ADD_ERROR_LOG(state, log) {\n state.logs.push(log);\n },\n CLEAR_ERROR_LOG: function CLEAR_ERROR_LOG(state) {\n state.logs.splice(0);\n }\n};\nvar actions = {\n addErrorLog: function addErrorLog(_ref, log) {\n var commit = _ref.commit;\n commit('ADD_ERROR_LOG', log);\n },\n clearErrorLog: function clearErrorLog(_ref2) {\n var commit = _ref2.commit;\n commit('CLEAR_ERROR_LOG');\n }\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n namespaced: true,\n state: state,\n mutations: mutations,\n actions: actions\n});\n\n//# sourceURL=webpack:///./src/store/modules/errorLog.js?"); - -/***/ }), - -/***/ "./src/store/modules/permission.js": -/*!*****************************************!*\ - !*** ./src/store/modules/permission.js ***! - \*****************************************/ -/*! exports provided: filterAsyncRoutes, default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"filterAsyncRoutes\", function() { return filterAsyncRoutes; });\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread2.js */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread2.js\");\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/web.dom.iterable */ \"./node_modules/core-js/modules/web.dom.iterable.js\");\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es7.array.includes */ \"./node_modules/core-js/modules/es7.array.includes.js\");\n/* harmony import */ var core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es6.string.includes */ \"./node_modules/core-js/modules/es6.string.includes.js\");\n/* harmony import */ var core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _router__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @/router */ \"./src/router/index.js\");\n\n\n\n\n\n/**\n * Use meta.role to determine if the current user has permission\n * @param roles\n * @param route\n */\n\nfunction hasPermission(roles, route) {\n if (route.meta && route.meta.roles) {\n return roles.some(function (role) {\n return route.meta.roles.includes(role);\n });\n } else {\n return true;\n }\n}\n/**\n * Filter asynchronous routing tables by recursion\n * @param routes asyncRoutes\n * @param roles\n */\n\n\nfunction filterAsyncRoutes(routes, roles) {\n var res = [];\n routes.forEach(function (route) {\n var tmp = Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_objectSpread2_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({}, route);\n\n if (hasPermission(roles, tmp)) {\n if (tmp.children) {\n tmp.children = filterAsyncRoutes(tmp.children, roles);\n }\n\n res.push(tmp);\n }\n });\n return res;\n}\nvar state = {\n routes: [],\n addRoutes: []\n};\nvar mutations = {\n SET_ROUTES: function SET_ROUTES(state, routes) {\n state.addRoutes = routes;\n state.routes = _router__WEBPACK_IMPORTED_MODULE_4__[\"constantRoutes\"].concat(routes);\n }\n};\nvar actions = {\n generateRoutes: function generateRoutes(_ref, roles) {\n var commit = _ref.commit;\n return new Promise(function (resolve) {\n var accessedRoutes = filterAsyncRoutes(_router__WEBPACK_IMPORTED_MODULE_4__[\"asyncRoutes\"], roles);\n commit('SET_ROUTES', accessedRoutes);\n resolve(accessedRoutes);\n });\n }\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n namespaced: true,\n state: state,\n mutations: mutations,\n actions: actions\n});\n\n//# sourceURL=webpack:///./src/store/modules/permission.js?"); - -/***/ }), - -/***/ "./src/store/modules/settings.js": -/*!***************************************!*\ - !*** ./src/store/modules/settings.js ***! - \***************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _styles_element_variables_scss__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/styles/element-variables.scss */ \"./src/styles/element-variables.scss\");\n/* harmony import */ var _styles_element_variables_scss__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_styles_element_variables_scss__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/settings */ \"./src/settings.js\");\n/* harmony import */ var _settings__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_settings__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _api_sys_config_config__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/api/sys/config/config */ \"./src/api/sys/config/config.js\");\n\n\n\nvar showSettings = _settings__WEBPACK_IMPORTED_MODULE_1___default.a.showSettings,\n tagsView = _settings__WEBPACK_IMPORTED_MODULE_1___default.a.tagsView,\n fixedHeader = _settings__WEBPACK_IMPORTED_MODULE_1___default.a.fixedHeader,\n sidebarLogo = _settings__WEBPACK_IMPORTED_MODULE_1___default.a.sidebarLogo;\nvar state = {\n theme: _styles_element_variables_scss__WEBPACK_IMPORTED_MODULE_0___default.a.theme,\n showSettings: showSettings,\n tagsView: tagsView,\n fixedHeader: fixedHeader,\n sidebarLogo: sidebarLogo,\n siteData: {}\n};\nvar mutations = {\n CHANGE_SETTING: function CHANGE_SETTING(state, _ref) {\n var key = _ref.key,\n value = _ref.value;\n\n if (state.hasOwnProperty(key)) {\n state[key] = value;\n }\n },\n SET_SITE_DATA: function SET_SITE_DATA(state, siteData) {\n state.siteData = siteData;\n }\n};\nvar actions = {\n changeSetting: function changeSetting(_ref2, data) {\n var commit = _ref2.commit;\n commit('CHANGE_SETTING', data);\n },\n // 获取网站配置信息\n getSite: function getSite(_ref3) {\n var commit = _ref3.commit;\n return new Promise(function (resolve, reject) {\n Object(_api_sys_config_config__WEBPACK_IMPORTED_MODULE_2__[\"fetchDetail\"])({}).then(function (response) {\n var data = response.data;\n commit('SET_SITE_DATA', data);\n resolve(data);\n }).catch(function (error) {\n reject(error);\n });\n });\n }\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n namespaced: true,\n state: state,\n mutations: mutations,\n actions: actions\n});\n\n//# sourceURL=webpack:///./src/store/modules/settings.js?"); - -/***/ }), - -/***/ "./src/store/modules/tagsView.js": -/*!***************************************!*\ - !*** ./src/store/modules/tagsView.js ***! - \***************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/toConsumableArray.js */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/toConsumableArray.js\");\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_slicedToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/slicedToArray.js */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/slicedToArray.js\");\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/web.dom.iterable */ \"./node_modules/core-js/modules/web.dom.iterable.js\");\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/createForOfIteratorHelper.js */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/createForOfIteratorHelper.js\");\n/* harmony import */ var core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es6.function.name */ \"./node_modules/core-js/modules/es6.function.name.js\");\n/* harmony import */ var core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_function_name__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es7.array.includes */ \"./node_modules/core-js/modules/es7.array.includes.js\");\n/* harmony import */ var core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es6.string.includes */ \"./node_modules/core-js/modules/es6.string.includes.js\");\n/* harmony import */ var core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_6__);\n\n\n\n\n\n\n\nvar state = {\n visitedViews: [],\n cachedViews: []\n};\nvar mutations = {\n ADD_VISITED_VIEW: function ADD_VISITED_VIEW(state, view) {\n if (state.visitedViews.some(function (v) {\n return v.path === view.path;\n })) return;\n state.visitedViews.push(Object.assign({}, view, {\n title: view.meta.title || 'no-name'\n }));\n },\n ADD_CACHED_VIEW: function ADD_CACHED_VIEW(state, view) {\n if (state.cachedViews.includes(view.name)) return;\n\n if (!view.meta.noCache) {\n state.cachedViews.push(view.name);\n }\n },\n DEL_VISITED_VIEW: function DEL_VISITED_VIEW(state, view) {\n var _iterator = Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(state.visitedViews.entries()),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var _step$value = Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_slicedToArray_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(_step.value, 2),\n i = _step$value[0],\n v = _step$value[1];\n\n if (v.path === view.path) {\n state.visitedViews.splice(i, 1);\n break;\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n },\n DEL_CACHED_VIEW: function DEL_CACHED_VIEW(state, view) {\n var index = state.cachedViews.indexOf(view.name);\n index > -1 && state.cachedViews.splice(index, 1);\n },\n DEL_OTHERS_VISITED_VIEWS: function DEL_OTHERS_VISITED_VIEWS(state, view) {\n state.visitedViews = state.visitedViews.filter(function (v) {\n return v.meta.affix || v.path === view.path;\n });\n },\n DEL_OTHERS_CACHED_VIEWS: function DEL_OTHERS_CACHED_VIEWS(state, view) {\n var index = state.cachedViews.indexOf(view.name);\n\n if (index > -1) {\n state.cachedViews = state.cachedViews.slice(index, index + 1);\n } else {\n // if index = -1, there is no cached tags\n state.cachedViews = [];\n }\n },\n DEL_ALL_VISITED_VIEWS: function DEL_ALL_VISITED_VIEWS(state) {\n // keep affix tags\n var affixTags = state.visitedViews.filter(function (tag) {\n return tag.meta.affix;\n });\n state.visitedViews = affixTags;\n },\n DEL_ALL_CACHED_VIEWS: function DEL_ALL_CACHED_VIEWS(state) {\n state.cachedViews = [];\n },\n UPDATE_VISITED_VIEW: function UPDATE_VISITED_VIEW(state, view) {\n var _iterator2 = Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_createForOfIteratorHelper_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(state.visitedViews),\n _step2;\n\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var v = _step2.value;\n\n if (v.path === view.path) {\n v = Object.assign(v, view);\n break;\n }\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n }\n};\nvar actions = {\n addView: function addView(_ref, view) {\n var dispatch = _ref.dispatch;\n dispatch('addVisitedView', view);\n dispatch('addCachedView', view);\n },\n addVisitedView: function addVisitedView(_ref2, view) {\n var commit = _ref2.commit;\n commit('ADD_VISITED_VIEW', view);\n },\n addCachedView: function addCachedView(_ref3, view) {\n var commit = _ref3.commit;\n commit('ADD_CACHED_VIEW', view);\n },\n delView: function delView(_ref4, view) {\n var dispatch = _ref4.dispatch,\n state = _ref4.state;\n return new Promise(function (resolve) {\n dispatch('delVisitedView', view);\n dispatch('delCachedView', view);\n resolve({\n visitedViews: Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.visitedViews),\n cachedViews: Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.cachedViews)\n });\n });\n },\n delVisitedView: function delVisitedView(_ref5, view) {\n var commit = _ref5.commit,\n state = _ref5.state;\n return new Promise(function (resolve) {\n commit('DEL_VISITED_VIEW', view);\n resolve(Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.visitedViews));\n });\n },\n delCachedView: function delCachedView(_ref6, view) {\n var commit = _ref6.commit,\n state = _ref6.state;\n return new Promise(function (resolve) {\n commit('DEL_CACHED_VIEW', view);\n resolve(Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.cachedViews));\n });\n },\n delOthersViews: function delOthersViews(_ref7, view) {\n var dispatch = _ref7.dispatch,\n state = _ref7.state;\n return new Promise(function (resolve) {\n dispatch('delOthersVisitedViews', view);\n dispatch('delOthersCachedViews', view);\n resolve({\n visitedViews: Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.visitedViews),\n cachedViews: Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.cachedViews)\n });\n });\n },\n delOthersVisitedViews: function delOthersVisitedViews(_ref8, view) {\n var commit = _ref8.commit,\n state = _ref8.state;\n return new Promise(function (resolve) {\n commit('DEL_OTHERS_VISITED_VIEWS', view);\n resolve(Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.visitedViews));\n });\n },\n delOthersCachedViews: function delOthersCachedViews(_ref9, view) {\n var commit = _ref9.commit,\n state = _ref9.state;\n return new Promise(function (resolve) {\n commit('DEL_OTHERS_CACHED_VIEWS', view);\n resolve(Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.cachedViews));\n });\n },\n delAllViews: function delAllViews(_ref10, view) {\n var dispatch = _ref10.dispatch,\n state = _ref10.state;\n return new Promise(function (resolve) {\n dispatch('delAllVisitedViews', view);\n dispatch('delAllCachedViews', view);\n resolve({\n visitedViews: Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.visitedViews),\n cachedViews: Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.cachedViews)\n });\n });\n },\n delAllVisitedViews: function delAllVisitedViews(_ref11) {\n var commit = _ref11.commit,\n state = _ref11.state;\n return new Promise(function (resolve) {\n commit('DEL_ALL_VISITED_VIEWS');\n resolve(Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.visitedViews));\n });\n },\n delAllCachedViews: function delAllCachedViews(_ref12) {\n var commit = _ref12.commit,\n state = _ref12.state;\n return new Promise(function (resolve) {\n commit('DEL_ALL_CACHED_VIEWS');\n resolve(Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.cachedViews));\n });\n },\n updateVisitedView: function updateVisitedView(_ref13, view) {\n var commit = _ref13.commit;\n commit('UPDATE_VISITED_VIEW', view);\n }\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n namespaced: true,\n state: state,\n mutations: mutations,\n actions: actions\n});\n\n//# sourceURL=webpack:///./src/store/modules/tagsView.js?"); - -/***/ }), - -/***/ "./src/store/modules/user.js": -/*!***********************************!*\ - !*** ./src/store/modules/user.js ***! - \***********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! regenerator-runtime/runtime */ \"./node_modules/regenerator-runtime/runtime.js\");\n/* harmony import */ var regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(regenerator_runtime_runtime__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/asyncToGenerator.js */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/asyncToGenerator.js\");\n/* harmony import */ var _api_user__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @/api/user */ \"./src/api/user.js\");\n/* harmony import */ var _utils_auth__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @/utils/auth */ \"./src/utils/auth.js\");\n/* harmony import */ var _router__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @/router */ \"./src/router/index.js\");\n\n\n\n\n\nvar state = {\n token: Object(_utils_auth__WEBPACK_IMPORTED_MODULE_3__[\"getToken\"])(),\n userId: '',\n name: '',\n realName: '',\n avatar: '',\n introduction: '',\n roles: []\n};\nvar mutations = {\n SET_TOKEN: function SET_TOKEN(state, token) {\n state.token = token;\n },\n SET_INTRODUCTION: function SET_INTRODUCTION(state, introduction) {\n state.introduction = introduction;\n },\n SET_ID: function SET_ID(state, userId) {\n state.userId = userId;\n },\n SET_NAME: function SET_NAME(state, name) {\n state.name = name;\n },\n SET_REAL_NAME: function SET_REAL_NAME(state, realName) {\n state.realName = realName;\n },\n SET_AVATAR: function SET_AVATAR(state, avatar) {\n state.avatar = avatar;\n },\n SET_ROLES: function SET_ROLES(state, roles) {\n state.roles = roles;\n }\n};\nvar actions = {\n // user login\n login: function login(_ref, userInfo) {\n var commit = _ref.commit;\n var username = userInfo.username,\n password = userInfo.password;\n return new Promise(function (resolve, reject) {\n Object(_api_user__WEBPACK_IMPORTED_MODULE_2__[\"login\"])({\n username: username.trim(),\n password: password\n }).then(function (response) {\n var data = response.data;\n commit('SET_TOKEN', data.token);\n Object(_utils_auth__WEBPACK_IMPORTED_MODULE_3__[\"setToken\"])(data.token);\n resolve();\n }).catch(function (error) {\n reject(error);\n });\n });\n },\n reg: function reg(_ref2, userInfo) {\n var commit = _ref2.commit;\n var userName = userInfo.userName,\n realName = userInfo.realName,\n password = userInfo.password;\n return new Promise(function (resolve, reject) {\n Object(_api_user__WEBPACK_IMPORTED_MODULE_2__[\"reg\"])({\n userName: userName.trim(),\n realName: realName.trim(),\n password: password\n }).then(function (response) {\n var data = response.data;\n commit('SET_TOKEN', data.token);\n Object(_utils_auth__WEBPACK_IMPORTED_MODULE_3__[\"setToken\"])(data.token);\n resolve();\n }).catch(function (error) {\n reject(error);\n });\n });\n },\n // get user info\n getInfo: function getInfo(_ref3) {\n var commit = _ref3.commit,\n state = _ref3.state;\n return new Promise(function (resolve, reject) {\n Object(_api_user__WEBPACK_IMPORTED_MODULE_2__[\"getInfo\"])(state.token).then(function (response) {\n var data = response.data;\n\n if (!data) {\n reject('校验失败,请重新登录!.');\n }\n\n var id = data.id,\n roles = data.roles,\n userName = data.userName,\n realName = data.realName,\n avatar = data.avatar,\n introduction = data.introduction; // roles must be a non-empty array\n\n if (!roles || roles.length <= 0) {\n reject('用户角色不能为空!');\n }\n\n commit('SET_ID', id);\n commit('SET_ROLES', roles);\n commit('SET_REAL_NAME', realName);\n commit('SET_NAME', userName);\n commit('SET_AVATAR', avatar);\n commit('SET_INTRODUCTION', introduction);\n resolve(data);\n }).catch(function (error) {\n reject(error);\n });\n });\n },\n // user logout\n logout: function logout(_ref4) {\n var commit = _ref4.commit,\n state = _ref4.state,\n dispatch = _ref4.dispatch;\n return new Promise(function (resolve, reject) {\n Object(_api_user__WEBPACK_IMPORTED_MODULE_2__[\"logout\"])(state.token).then(function () {\n commit('SET_TOKEN', '');\n commit('SET_ROLES', []);\n Object(_utils_auth__WEBPACK_IMPORTED_MODULE_3__[\"removeToken\"])();\n Object(_router__WEBPACK_IMPORTED_MODULE_4__[\"resetRouter\"])(); // reset visited views and cached views\n // to fixed https://github.com/PanJiaChen/vue-element-admin/issues/2485\n\n dispatch('tagsView/delAllViews', null, {\n root: true\n });\n resolve();\n }).catch(function (error) {\n reject(error);\n });\n });\n },\n // remove token\n resetToken: function resetToken(_ref5) {\n var commit = _ref5.commit;\n return new Promise(function (resolve) {\n commit('SET_TOKEN', '');\n commit('SET_ROLES', []);\n Object(_utils_auth__WEBPACK_IMPORTED_MODULE_3__[\"removeToken\"])();\n resolve();\n });\n },\n // dynamically modify permissions\n changeRoles: function changeRoles(_ref6, role) {\n var commit = _ref6.commit,\n dispatch = _ref6.dispatch;\n return new Promise( /*#__PURE__*/function () {\n var _ref7 = Object(_Users_van_Documents_yf_projects_yf_exam_lite_exam_vue_node_modules_babel_runtime_corejs2_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])( /*#__PURE__*/regeneratorRuntime.mark(function _callee(resolve) {\n var token, _yield$dispatch, roles, accessRoutes;\n\n return regeneratorRuntime.wrap(function _callee$(_context) {\n while (1) {\n switch (_context.prev = _context.next) {\n case 0:\n token = role + '-token';\n commit('SET_TOKEN', token);\n Object(_utils_auth__WEBPACK_IMPORTED_MODULE_3__[\"setToken\"])(token);\n _context.next = 5;\n return dispatch('getInfo');\n\n case 5:\n _yield$dispatch = _context.sent;\n roles = _yield$dispatch.roles;\n Object(_router__WEBPACK_IMPORTED_MODULE_4__[\"resetRouter\"])(); // generate accessible routes map based on roles\n\n _context.next = 10;\n return dispatch('permission/generateRoutes', roles, {\n root: true\n });\n\n case 10:\n accessRoutes = _context.sent;\n // dynamically add accessible routes\n _router__WEBPACK_IMPORTED_MODULE_4__[\"default\"].addRoutes(accessRoutes); // reset visited views and cached views\n\n dispatch('tagsView/delAllViews', null, {\n root: true\n });\n resolve();\n\n case 14:\n case \"end\":\n return _context.stop();\n }\n }\n }, _callee);\n }));\n\n return function (_x) {\n return _ref7.apply(this, arguments);\n };\n }());\n }\n};\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n namespaced: true,\n state: state,\n mutations: mutations,\n actions: actions\n});\n\n//# sourceURL=webpack:///./src/store/modules/user.js?"); - -/***/ }), - -/***/ "./src/styles/element-variables.scss": -/*!*******************************************!*\ - !*** ./src/styles/element-variables.scss ***! - \*******************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -eval("// style-loader: Adds some css to the DOM by adding a